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.

9 lines
260B

  1. {% extends "index.html" %}
  2. {% block content %}
  3. {{ page.content | safe }}
  4. {% if page.previous %}Previous article: {{ page.previous.permalink }}{% endif %}
  5. {% if page.next %}Next article: {{ page.next.permalink }}{% endif %}
  6. {% endblock content %}