page.html 450 B

1234567891011121314151617181920
  1. {% extends "base.html" %}
  2. {% block title %}{{ page.title }}{% endblock %}
  3. {% block content %}
  4. <h1 class="entry-title"><span>{{ page.title }}</span></h1>
  5. {% if page.toc %}
  6. <nav id="side-nav">
  7. {{ page.toc }}
  8. </nav>
  9. <div id="content">
  10. {% endif %}
  11. {% import 'translations.html' as translations with context %}
  12. {{ translations.translations_for(page) }}
  13. {{ page.content }}
  14. {% if page.toc %}
  15. </div>
  16. {% endif %}
  17. {% endblock %}