grav/themes/buha2/templates/partials/news/taxonomy.html.twig

8 lines
297 B
Twig
Raw Normal View History

2023-01-10 13:42:37 +01:00
{% 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 }}">{{ tag }}</a>
{% endfor %}
</span>
{% endif %}