A theme for pelican which mimics the look of LaTeX documents
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.

28 lignes
678 B

  1. {% extends "base.html" %}
  2. {% block html_lang %}{{ page.lang }}{% endblock %}
  3. {% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%}
  4. {% block head %}
  5. {{ super() }}
  6. {% import 'translations.html' as translations with context %}
  7. {% if translations.entry_hreflang(page) %}
  8. {{ translations.entry_hreflang(page) }}
  9. {% endif %}
  10. {% endblock %}
  11. {% block content %}
  12. <h1>{{ page.title }}</h1>
  13. {% import 'translations.html' as translations with context %}
  14. {{ translations.translations_for(page) }}
  15. {{ page.content }}
  16. {% if page.modified %}
  17. <p>
  18. Last updated: {{ page.locale_modified }}
  19. </p>
  20. {% endif %}
  21. {% endblock %}