the home site for me: also iteration 3 or 4 of my site
1{% extends "base.html" %}
2
3{% block content %}
4<div><a href="..">..</a>/<span class="accent-data">{{ page.slug }}</span></div>
5<time datetime="{{ page.date }}">Published on: <span class="accent-data">{{ page.date }}</span></time>
6{% if config.extra.author and config.extra.display_author == true %}
7<address rel="author">By <span class="accent-data">{{config.extra.author}}</span></address>
8{% endif %}
9<h1>{{ page.title }}</h1>
10
11{% if page.toc and page.extra.toc %}
12<h2>Table of contents</h2>
13<ul>
14 {% for h1 in page.toc %}
15 <li>
16 <a href="{{ h1.permalink | safe }}">{{ h1.title }}</a>
17 {% if h1.children %}
18 <ul>
19 {% for h2 in h1.children %}
20 <li>
21 <a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>
22 <ul>
23 {% for h3 in h2.children %}
24 <li>
25 <a href="{{ h3.permalink | safe }}">{{ h3.title }}</a>
26 </li>
27 {% endfor %}
28 </ul>
29 </li>
30 {% endfor %}
31 </ul>
32 {% endif %}
33 </li>
34 {% endfor %}
35</ul>
36{% endif %}
37
38{{ page.content | safe }}
39
40<p class="tags-data">
41 {% if page.taxonomies.tags %}
42 {% for tag in page.taxonomies.tags %}
43 <a href="/tags/{{ tag | slugify }}">/{{ tag }}/</a>
44 {% endfor %}
45 {% endif %}
46</p>
47{% endblock content %}