A theme for pelican which mimics the look of LaTeX documents
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 4 Jahren
123456789101112131415161718192021222324252627
  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 %}