update theme

This commit is contained in:
thisLight 2020-12-30 11:19:28 +08:00
parent 4dbd8084f0
commit ffad9e9871
4 changed files with 33 additions and 8 deletions

View file

@ -0,0 +1,9 @@
{% macro PostTags(post) %}
<div>
{% for k in Object.keys(post.tags.data) %}
<a href="{{ url_for(post.tags.data[k].path)}}"><div class="chip">
{{post.tags.data[k].name}}
</div></a>
{% endfor %}
</div>
{% endmacro %}