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.

10 lines
323B

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