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.

page.html 678 B

há 4 anos
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 %}