Use url filter for proper urls on github pages

master
Zach Leatherman 2018-06-11 08:17:20 -05:00
parent af001c7a00
commit 4d72cacd23
1 changed files with 6 additions and 1 deletions

View File

@ -3,7 +3,12 @@
<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" and metadata.tagPages.indexOf(tag) > -1 %}<a href="/tags/{{ tag }}/" class="tag">{{ tag }}</a>{% endif %}{% endfor %}
{% for tag in post.data.tags %}
{%- if tag != "post" and metadata.tagPages.indexOf(tag) > -1 -%}
{% set tagUrl %}/tags/{{ tag }}/{% endset %}
<a href="{{ tagUrl | url }}" class="tag">{{ tag }}</a>
{%- endif -%}
{% endfor %}
</li>
{% endfor %}
</ol>