feat: tags

This commit is contained in:
rick 2021-07-02 10:45:59 +02:00
commit d56d217b24
Signed by: Rick
GPG key ID: 2B593F087240EE99
2 changed files with 23 additions and 1 deletions
templates

View file

@ -15,6 +15,14 @@
{{ art.summary }}
</div>
<a href="{{ SITEURL }}/{{ art.url }}" class="continue">Continuer à lire</a>
{% if art.tags is not none %}
<hr />
<div class="tags">
{% for tag in art.tags %}
<a href="">{{ tag }}</a>
{% endfor %}
</div>
{% endif %}
</div>
{% endfor %}
{%- endmacro %}