We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 670bb31 commit 338de8aCopy full SHA for 338de8a
index.html
@@ -15,3 +15,16 @@ <h2>{{ page.title }}</h2>
15
16
{% endfor %}
17
</ul>
18
+<p>Tags</p>
19
+
20
+{% for tag in site.tags %}
21
+ <div id="{{tag[0]}}" name="{{tag[0]}}">
22
+ <h1>{{tag[0]}}</h1>
23
+ </div>
24
+ {% for post in tag[1] %}
25
+ <div class="article">
26
+ <span class="datetime">{{ post.date | date:"%Y-%m-%d" }} </span>
27
+ <a href="{{ post.url }}">{{ post.title }}</a>
28
29
+ {% endfor %}
30
+{% endfor %}
0 commit comments