Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
123456789 |
- {% extends "base.html" %}
- {% block title %}{{ page.title }}{% endblock %}
- {% block content %}
- <h3>{{ page.title }}</h3>
- {% import 'translations.html' as translations with context %}
- {{ translations.translations_for(page) }}
- {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">PDF</a>{% endif %}
- {{ page.content }}
- {% endblock %}
|