page.html 525 B

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