taxonomy.html.twig 305 B

1234567
  1. {% if page.taxonomy.tag %}
  2. <span class="tags">
  3. {% for tag in page.taxonomy.tag %}
  4. <a class="label label-rounded {{ label_style ?: 'label-secondary' }} p-tag" href="{{ blog.url|rtrim('/') }}/tag{{ config.system.param_sep }}{{ tag }}#body-wrapper">{{ tag }}</a>
  5. {% endfor %}
  6. </span>
  7. {% endif %}