page.html 632 B

1234567891011121314151617181920212223
  1. {% extends "/html/base.html" %}
  2. {%block subtitle %}: {{page.title}}{% endblock %}
  3. {% block content %}
  4. <div id="custom-page">
  5. <div id="page-header">
  6. <h2>{{page.title}}</h2>
  7. </div>
  8. {% if page.toc %}{{page.toc|safe}}{% endif %}
  9. {{page.content|safe}}
  10. <div id="prev-next">
  11. {% if page.prev %}
  12. <a href="{{page.prev.uri}}">&laquo; {{page.prev.title}}</a>
  13. {% endif %}
  14. {% if all page.prev page.next %}
  15. ||
  16. {% endif %}
  17. {% if page.next %}
  18. <a href="{{page.next.uri}}">{{page.next.title}} &raquo;</a>
  19. {% endif %}
  20. </div>
  21. </div>
  22. {% endblock %}