zola/test_site/templates/page_template.html

8 lines
353 B
HTML
Raw Normal View History

{% extends "index.html" %}
{% block content %}
<h1>Another page template, specified with the "page_template" key in the front matter</h1>
{{ page.content | safe }}
{% if page.earlier %}Previous article: {{ page.earlier.permalink }}{% endif %}
{% if page.later %}Next article: {{ page.later.permalink }}{% endif %}
{% endblock content %}