the home site for me: also iteration 3 or 4 of my site
1{% extends "base.html" %} {% block content %}
2<div><a href="..">..</a>/<span class="accent-data">{{ page.slug }}</span></div>
3<article class="h-entry">
4 <a class="u-url" href="{{ page.permalink }}" style="display: none"> </a>
5 <time
6 datetime="{{ page.date | date(format='%Y-%m-%d %H:%M:%S%z') }}"
7 class="dt-published"
8 >Published on:
9 <span class="accent-data"
10 >{{ page.date | split(pat="T") | first }}</span
11 ></time
12 >
13 {% if config.extra.author and config.extra.display_author == true %}
14 <address rel="author">
15 By
16 <a
17 rel="author"
18 class="accent-data p-author h-card text-glow"
19 href="https://dunkirk.sh"
20 >{{config.extra.author}}</a
21 >
22 </address>
23 {% endif %}
24 <h1>{{ page.title }}</h1>
25
26 {% if page.toc and page.extra.toc %}
27 <h2>Table of contents</h2>
28 <ul>
29 {% for h1 in page.toc %}
30 <li>
31 <a href="{{ h1.permalink | safe }}">{{ h1.title }}</a>
32 {% if h1.children %}
33 <ul>
34 {% for h2 in h1.children %}
35 <li>
36 <a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>
37 <ul>
38 {% for h3 in h2.children %}
39 <li>
40 <a href="{{ h3.permalink | safe }}"
41 >{{ h3.title }}</a
42 >
43 </li>
44 {% endfor %}
45 </ul>
46 </li>
47 {% endfor %}
48 </ul>
49 {% endif %}
50 </li>
51 {% endfor %}
52 </ul>
53 {% endif %}
54
55 <div class="e-content p-name">{{ page.content | safe }}</div>
56
57 <p class="tags-data">
58 {% if page.taxonomies.tags %} {% for tag in page.taxonomies.tags %}
59 <a href="/tags/{{ tag | slugify }}" class="p-category text-glow"
60 >|{{ tag }}|</a
61 >
62 {% endfor %} {% endif %}
63 </p>
64</article>
65{% endblock content %}