public.html.twig 255 B

12345678910
  1. {% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
  2. {% import _self as macro %}
  3. {% if page.taxonomy.tag %}
  4. {% for tag in page.taxonomy.tag %}
  5. <span class="publics">
  6. {{ tag }}
  7. </span>
  8. {% endfor %}
  9. {% endif %}