another go with tags
This commit is contained in:
parent
1bcb55eba1
commit
73dd6adab0
3 changed files with 15 additions and 14 deletions
13
tags.html
Normal file
13
tags.html
Normal 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue