another go with tags

This commit is contained in:
Lukasz Skotarek 2020-04-04 16:52:26 +02:00
parent 1bcb55eba1
commit 73dd6adab0
3 changed files with 15 additions and 14 deletions

13
tags.html Normal file
View file

@ -0,0 +1,13 @@
---
layout: page
title: Posts by tags
permalink: /tags/
---
{% for tag in site.tags %}
<h3>{{ tag[0] }}</h3>
<ul>
{% for post in tag[1] %}
<li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}