···
{% extends "base.html" %} {% block content %}
<div><a href="..">..</a>/<span class="accent-data">{{ page.slug }}</span></div>
3
-
<time datetime="{{ page.date }}"
5
-
<span class="accent-data"
6
-
>{{ page.date | split(pat="T") | first }}</span
9
-
{% if config.extra.author and config.extra.display_author == true %}
10
-
<address rel="author">
11
-
By <span class="accent-data">{{config.extra.author}}</span>
14
-
<h1>{{ page.title }}</h1>
3
+
<article class="h-entry">
4
+
<a class="u-url" href="{{ page.permalink }}" style="display: none"> </a>
6
+
datetime="{{ page.date | date(format='%Y-%m-%d %H:%M:%S%z') }}"
9
+
<span class="accent-data"
10
+
>{{ page.date | split(pat="T") | first }}</span
13
+
{% if config.extra.author and config.extra.display_author == true %}
14
+
<address rel="author">
18
+
class="accent-data p-author h-card"
19
+
href="https://dunkirk.sh"
20
+
>{{config.extra.author}}</a
24
+
<h1>{{ page.title }}</h1>
26
+
{% if page.toc and page.extra.toc %}
27
+
<h2>Table of contents</h2>
29
+
{% for h1 in page.toc %}
31
+
<a href="{{ h1.permalink | safe }}">{{ h1.title }}</a>
32
+
{% if h1.children %}
34
+
{% for h2 in h1.children %}
36
+
<a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>
38
+
{% for h3 in h2.children %}
40
+
<a href="{{ h3.permalink | safe }}"
16
-
{% if page.toc and page.extra.toc %}
17
-
<h2>Table of contents</h2>
19
-
{% for h1 in page.toc %}
21
-
<a href="{{ h1.permalink | safe }}">{{ h1.title }}</a>
22
-
{% if h1.children %}
24
-
{% for h2 in h1.children %}
26
-
<a href="{{ h2.permalink | safe }}">{{ h2.title }}</a>
28
-
{% for h3 in h2.children %}
30
-
<a href="{{ h3.permalink | safe }}">{{ h3.title }}</a>
41
-
{% endif %} {{ page.content | safe }}
55
+
<div class="e-content p-name">{{ page.content | safe }}</div>
43
-
<p class="tags-data">
44
-
{% if page.taxonomies.tags %} {% for tag in page.taxonomies.tags %}
45
-
<a href="/tags/{{ tag | slugify }}">|{{ tag }}|</a>
46
-
{% endfor %} {% endif %}
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">|{{ tag }}|</a>
60
+
{% endfor %} {% endif %}