zola/test_site/templates/page.html

9 lines
260 B
HTML
Raw Normal View History

{% extends "index.html" %}
{% block content %}
{{ page.content | safe }}
2017-05-01 08:10:22 +00:00
{% if page.previous %}Previous article: {{ page.previous.permalink }}{% endif %}
{% if page.next %}Next article: {{ page.next.permalink }}{% endif %}
{% endblock content %}