1234567891011121314151617181920212223 |
- {% extends "/html/base.html" %}
- {%block subtitle %}: {{page.title}}{% endblock %}
- {% block content %}
- <div id="custom-page">
- <div id="page-header">
- <h2>{{page.title}}</h2>
- </div>
- {% if page.toc %}{{page.toc|safe}}{% endif %}
- {{page.content|safe}}
- <div id="prev-next">
- {% if page.prev %}
- <a href="{{page.prev.uri}}">« {{page.prev.title}}</a>
- {% endif %}
- {% if all page.prev page.next %}
- ||
- {% endif %}
- {% if page.next %}
- <a href="{{page.next.uri}}">{{page.next.title}} »</a>
- {% endif %}
- </div>
- </div>
- {% endblock %}
|