mirror of
https://github.com/getzola/zola
synced 2024-11-14 16:17:12 +00:00
56af4ca7f9
To override all child pages Closes #397 Tests from PR #434
7 lines
344 B
HTML
7 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 %}
|