page.html 591 B

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