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
categories.html Normal file
View file

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