mirror of
https://github.com/getzola/zola
synced 2024-12-14 06:12:27 +00:00
83b04a561c
Closes #485
9 lines
296 B
HTML
9 lines
296 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block content %}
|
|
{{ page.content | safe }}
|
|
{{ page.relative_path | safe }}
|
|
|
|
{% if page.earlier %}Previous article: {{ page.earlier.permalink }}{% endif %}
|
|
{% if page.later %}Next article: {{ page.later.permalink }}{% endif %}
|
|
{% endblock content %}
|