page.html 683 B

123456789101112131415161718192021222324
  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 body_classes %}
  11. page-slug--{{page.slug}}
  12. {% endblock %}
  13. {% block content %}
  14. <section id="content" class="body page-slug--{{page.slug}}">
  15. <h1 class="entry-title">{{ page.title }}</h1>
  16. {% import 'translations.html' as translations with context %}
  17. {{ translations.translations_for(page) }}
  18. {{ page.content }}
  19. </section>
  20. {% endblock %}