zola/test_site/templates/page.html
2019-02-09 20:49:18 +01:00

11 lines
310 B
HTML

{% extends "index.html" %}
{% block content %}
{{ page.content | safe }}
{{ page.relative_path | safe }}
{{ toc }}
{% if page.earlier %}Previous article: {{ page.earlier.permalink }}{% endif %}
{% if page.later %}Next article: {{ page.later.permalink }}{% endif %}
{% endblock content %}