page.html 446 B

123456789101112
  1. {% extends "base.html" %}
  2. {% block title %}{{ page.title }}{% endblock %}
  3. {% block content %}
  4. <section id="content" class="body">
  5. <h1 class="entry-title">{{ page.title }}</h1>
  6. {% import 'translations.html' as translations with context %}
  7. {{ translations.translations_for(page) }}
  8. {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">get
  9. the pdf</a>{% endif %}
  10. {{ page.content }}
  11. </section>
  12. {% endblock %}