A theme for pelican which mimics the look of LaTeX documents
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

28 linhas
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 %}