Back to Zola

Another page template, specified with the "page_template" key in the front matter

test_site/templates/page_template.html

0.22.1332 B
Original Source

{% extends "index.html" %} {% block content %}

Another page template, specified with the "page_template" key in the front matter

{{ page.content | safe }} {% if page.earlier %}Previous article: {{ page.earlier.permalink }}{% endif %} {% if page.later %}Next article: {{ page.later.permalink }}{% endif %} {% endblock content %}