您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
375B

  1. {% extends "base.html" %}
  2. {% block title %}{{ page.title }}{% endblock %}
  3. {% block content %}
  4. <h3>{{ page.title }}</h3>
  5. {% import 'translations.html' as translations with context %}
  6. {{ translations.translations_for(page) }}
  7. {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">PDF</a>{% endif %}
  8. {{ page.content }}
  9. {% endblock %}