zola/test_site/templates/page.html
2017-06-29 22:19:54 +09:00

9 lines
260 B
HTML

{% extends "index.html" %}
{% block content %}
{{ page.content | safe }}
{% if page.previous %}Previous article: {{ page.previous.permalink }}{% endif %}
{% if page.next %}Next article: {{ page.next.permalink }}{% endif %}
{% endblock content %}