trying to get subpages to work with code

This commit is contained in:
Lukasz Skotarek 2020-04-02 22:45:09 +02:00
parent 59c253b296
commit 2755d407c1
2 changed files with 0 additions and 0 deletions

8
tags.md 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 %}