page.html 399 B

12345678910111213141516
  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. <h1>{{page.title}}</h1>
  7. </div>
  8. {% if page.toc %}{{page.toc|safe}}{% endif %}
  9. {{page.content|safe}}
  10. {% with prev=page.prev next=page.next%}
  11. {% include "/html/prev-next.html" %}
  12. {% endwith %}
  13. </div>
  14. {% endblock %}