9 lines
419 B
HTML
9 lines
419 B
HTML
{% extends "index.html" %}
|
|
{% block content %}
|
|
<h1>Another page template, specified with the "page_template" key in the front matter but from a child
|
|
of a section with also a "page_template" key</h1>
|
|
{{ page.content | safe }}
|
|
{% if page.earlier %}Previous article: {{ page.earlier.permalink }}{% endif %}
|
|
{% if page.later %}Next article: {{ page.later.permalink }}{% endif %}
|
|
{% endblock content %}
|