codinfox-lanyon
codinfox-lanyon copied to clipboard
category.html
I think there is a copy and paste error within the category.html
{% for tag in post.tags %}
<a class="codinfox-tag-mark" href="/blog/tag/#{{ tag | slugify }}">{{ tag }}</a>
{% endfor %}
has to be
{% for category in post.category %}
<a class="codinfox-tag-mark" href="/blog/category/#{{ category | slugify }}">{{ category }}</a>
{% endfor %}
Thanks for the nice example, Stephan