8 lines
310 B
Twig
8 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 %}
|