2017-03-14 12:25:45 +00:00
|
|
|
{% extends "index.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{{ page.content | safe }}
|
2018-10-18 16:00:39 +00:00
|
|
|
{{ page.relative_path | safe }}
|
2019-10-14 13:12:19 +00:00
|
|
|
{{ page.toc }}
|
2017-05-01 08:10:22 +00:00
|
|
|
|
2018-08-27 19:37:50 +00:00
|
|
|
{% if page.earlier %}Previous article: {{ page.earlier.permalink }}{% endif %}
|
|
|
|
{% if page.later %}Next article: {{ page.later.permalink }}{% endif %}
|
2017-03-14 12:25:45 +00:00
|
|
|
{% endblock content %}
|