shylie.info/tags.html

16 lines
252 B
HTML
Raw Normal View History

2024-01-14 04:28:46 +00:00
---
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 }}</a></li>
{% endfor %}
</ul>
{% endfor %}