mirror of
https://github.com/getzola/zola
synced 2024-12-13 22:02:29 +00:00
8 lines
260 B
HTML
8 lines
260 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block content %}
|
|
{{ page.content | safe }}
|
|
|
|
{% if page.previous %}Previous article: {{ page.previous.permalink }}{% endif %}
|
|
{% if page.next %}Next article: {{ page.next.permalink }}{% endif %}
|
|
{% endblock content %}
|