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
353B

  1. {% extends "index.html" %}
  2. {% block content %}
  3. <h1>Another page template, specified with the "page_template" key in the front matter</h1>
  4. {{ page.content | safe }}
  5. {% if page.earlier %}Previous article: {{ page.earlier.permalink }}{% endif %}
  6. {% if page.later %}Next article: {{ page.later.permalink }}{% endif %}
  7. {% endblock content %}