mirror of
https://github.com/Speyll/anemone.git
synced 2024-11-10 00:16:35 +00:00
47 lines
967 B
HTML
47 lines
967 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block header %}
|
||
|
<h1>{{ page.title }}</h1>
|
||
|
{% endblock header %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
{% if page.toc and page.extra.toc %}
|
||
|
<h2>Table of contents</h2>
|
||
|
<ul>
|
||
|
{% for h1 in page.toc %}
|
||
|
<li>
|
||
|
<a href="{{ h1.permalink | safe }}">{{ h1.title }}</a>
|
||
|
{% if h1.children %}
|
||
|
<ul>
|
||
|
{% for h2 in h1.children %}
|
||
|
<li>
|
||
|
<a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>
|
||
|
<ul>
|
||
|
{% for h3 in h2.children %}
|
||
|
<li>
|
||
|
<a href="{{ h3.permalink | safe }}">{{ h3.title }}</a>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endif %}
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endif %}
|
||
|
|
||
|
{{ page.content | safe }}
|
||
|
{% endblock content %}
|
||
|
|
||
|
{% block footer %}
|
||
|
<p class="tagsData">
|
||
|
{% if page.taxonomies.tags %}
|
||
|
{% for tag in page.taxonomies.tags %}
|
||
|
<a href="/tags/{{ tag | slugify }}">#{{ tag }}</a>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
</p>
|
||
|
{% endblock footer %}
|