Fix tags layout

This commit is contained in:
R. Tyler Croy 2018-12-08 19:19:24 -08:00
parent cfc1d29d13
commit fe3cf5b4b7
No known key found for this signature in database
GPG Key ID: E5C92681BEF6CEA2
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ layout: default
---
<h2>{{ page.tag }}</h2>
<ul>
{% for post in page.posts %}
{% for post in site.tags[page.tag] %}
<li><a href="{{ post.url }}">{{ post.title }}</a> ({{ post.date | date_to_string }} | Tags: {{ post | tags }})</li>
{% endfor %}
</ul>