zola/test_site/templates/page.html

11 lines
315 B
HTML
Raw Normal View History

{% extends "index.html" %}
{% block content %}
{{ page.content | safe }}
{{ page.relative_path | safe }}
{{ page.toc }}
2017-05-01 08:10:22 +00:00
2018-08-27 19:37:50 +00:00
{% if page.earlier %}Previous article: {{ page.earlier.permalink }}{% endif %}
{% if page.later %}Next article: {{ page.later.permalink }}{% endif %}
{% endblock content %}