blog/themes/cmd/layout/includes/tags.njk

10 lines
199 B
Text
Raw Normal View History

{% macro PostTags(post) %}
<div>
{% for tag in post.tags.data %}
<a href="{{ url_for(tag.path) }}"><div class="chip">
{{tag.name}}
</div></a>
{% endfor %}
</div>
{% endmacro %}