You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
375B

  1. {% extends "base.html" %}
  2. {% block title %}{{ page.title }}{% endblock %}
  3. {% block content %}
  4. <h3>{{ page.title }}</h3>
  5. {% import 'translations.html' as translations with context %}
  6. {{ translations.translations_for(page) }}
  7. {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">PDF</a>{% endif %}
  8. {{ page.content }}
  9. {% endblock %}