zola/test_site/templates/page_template_override.html
Vincent Prouillet 56af4ca7f9 Add page_template to sections
To override all child pages

Closes #397
Tests from PR #434
2018-11-07 19:42:23 +01:00

8 lines
344 B
HTML

{% extends "index.html" %}
{% block content %}
{{ page.content | safe }}
<h1>Yet another page template, using the override feature for page templates</h1>
{% if page.earlier %}Previous article: {{ page.earlier.permalink }}{% endif %}
{% if page.later %}Next article: {{ page.later.permalink }}{% endif %}
{% endblock content %}