added metadata, about and some post navigation

This commit is contained in:
Lukasz Skotarek 2020-04-02 22:28:57 +02:00
parent f9de954724
commit 59c253b296
29 changed files with 85 additions and 32 deletions

8
tags.html Normal file
View file

@ -0,0 +1,8 @@
{% for tag in site.tags %}
<h3>{{ tag[0] }}</h3>
<ul>
{% for post in tag[1] %}
<li><a href=" {{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}