zola/test_site/templates/page.html

10 lines
323 B
HTML

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