Adds tag pages example

This commit is contained in:
Zach Leatherman
2018-06-11 08:08:15 -05:00
parent 80ea652463
commit 75243f298d
5 changed files with 27 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
<li class="postlist-item{% if post.url == url %} postlist-item-active{% endif %}">
<a href="{{ post.url | url }}" class="postlist-link">{{ post.data.title }}</a>
<span class="postlist-date">{{ post.date | readableDate }}</span>
{% for tag in post.data.tags %}{% if tag != "post" %}<span class="tag">{{ tag }}</span>{% endif %}{% endfor %}
{% for tag in post.data.tags %}{% if tag != "post" and metadata.tagPages.indexOf(tag) > -1 %}<a href="/tags/{{ tag }}/" class="tag">{{ tag }}</a>{% endif %}{% endfor %}
</li>
{% endfor %}
</ol>
</ol>