You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
344B

  1. {% extends "index.html" %}
  2. {% block content %}
  3. {{ page.content | safe }}
  4. <h1>Yet another page template, using the override feature for page templates</h1>
  5. {% if page.earlier %}Previous article: {{ page.earlier.permalink }}{% endif %}
  6. {% if page.later %}Next article: {{ page.later.permalink }}{% endif %}
  7. {% endblock content %}