brokenco.de/_layouts/tag_page.html

17 lines
363 B
HTML
Raw Normal View History

2011-05-15 22:02:59 +00:00
---
layout: default
---
2019-05-26 18:23:08 +00:00
<div class="archive-group">
{% capture page.tag %}{{ category | first }}{% endcapture %}
<p></p>
<h2 class="archive-cat">{{ page.tag }}</h2>
2019-05-26 18:23:08 +00:00
<ul>
{% for post in site.tags[page.tag] %}
<li><a class="archive-link" href="{{ post.url | relative_url}}">{{post.title}}</a></li>
2019-05-26 18:23:08 +00:00
{% endfor %}
</ul>
</div>