the home site for me: also iteration 3 or 4 of my site
1{% extends "base.html" %} {% block content %}
2<h1>{{ page.title }}</h1>
3
4{% if page.toc and page.extra.toc %}
5<h2>Table of contents</h2>
6<ul>
7 {% for h1 in page.toc %}
8 <li>
9 <a href="{{ h1.permalink | safe }}">{{ h1.title }}</a>
10 {% if h1.children %}
11 <ul>
12 {% for h2 in h1.children %}
13 <li>
14 <a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>
15 <ul>
16 {% for h3 in h2.children %}
17 <li>
18 <a href="{{ h3.permalink | safe }}">{{ h3.title }}</a>
19 </li>
20 {% endfor %}
21 </ul>
22 </li>
23 {% endfor %}
24 </ul>
25 {% endif %}
26 </li>
27 {% endfor %}
28</ul>
29{% endif %} {{ page.content | safe }}
30
31<p class="tags-data">
32 {% if page.taxonomies.tags %} {% for tag in page.taxonomies.tags %}
33 <a href="/tags/{{ tag | slugify }}">/{{ tag }}/</a>
34 {% endfor %} {% endif %}
35</p>
36{% endblock content %}