zola/test_site/templates/page.html

12 lines
343 B
HTML

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