zola/test_site/templates/page.html
Vincent Prouillet 6e9a9eaa1f Fix prev/next
2017-05-01 17:10:22 +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 %}