codinfox-lanyon icon indicating copy to clipboard operation
codinfox-lanyon copied to clipboard

category.html

Open stephanflemming opened this issue 8 years ago • 0 comments

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

stephanflemming avatar Jan 11 '18 23:01 stephanflemming