shylie.info/tags.html
2024-01-14 12:39:51 +00:00

16 lines
263 B
HTML

---
layout: default
title: Posts by Tag
---
<h1><a href="/">home</a></h1>
{% for tag in site.tags %}
<h2>{{ tag[0] }}</h2>
<ul>
{% for post in tag[1] %}
<li><a href="{{ post.url }}">{{ post.title | downcase }}</a></li>
{% endfor %}
</ul>
{% endfor %}