mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
7 lines
310 B
Twig
7 lines
310 B
Twig
{% if page.taxonomy.tag %}
|
|
<span class="tags">
|
|
{% for tag in page.taxonomy.tag %}
|
|
<a class="label label-rounded {{ label_style ?: 'label-secondary' }} p-category" href="{{ blog.url|rtrim('/') }}/tag{{ config.system.param_sep }}{{ tag }}#body-wrapper">{{ tag }}</a>
|
|
{% endfor %}
|
|
</span>
|
|
{% endif %}
|