blog/themes/cmd/layout/includes/tags.njk
thisLight 781759d545 move cmd to nunjucks & update hexo to 6.0.0
Other changes:
* minor fix to the display for code blocks
* remove floating when hover on cards
* replace the list of tags and categories to the index page one
* small change on the title of tags' and categories' pages
2021-12-31 18:07:40 +08:00

10 lines
199 B
Text

{% 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 %}