11 lines
255 B
Twig
Raw Normal View History

2019-05-09 00:26:27 +02:00
{% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
{% import _self as macro %}
{% if page.taxonomy.tag %}
{% for tag in page.taxonomy.tag %}
2019-05-14 19:59:47 +02:00
<span class="publics">
{{ tag }}
</span>
2019-05-09 00:26:27 +02:00
{% endfor %}
{% endif %}