zola/test_site/templates/page.html
2018-10-18 18:00:40 +02:00

10 lines
296 B
HTML

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