12 lines
298 B
Twig
12 lines
298 B
Twig
{% if page.taxonomy.tag %}
|
|
{% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
|
|
|
|
{% import _self as macro %}
|
|
|
|
{% for tag in page.taxonomy.tag %}
|
|
<span class="tags {{ macro.pageLinkName(tag) }}">
|
|
<a class="label">{{ tag }}</a>
|
|
</span>
|
|
{% endfor %}
|
|
{% endif %}
|