taxonomy.html.twig 339 B

123456789101112131415
  1. {% if page.taxonomy.tag %}
  2. <span class="tags">
  3. {% for tag in page.taxonomy.tag|batch(4) %}
  4. <div class="row">
  5. {% for tag in tag %}
  6. <a href="{{ blog.url|rtrim('/') }}/tag{{ config.system.param_sep }}{{ tag }}">{{ tag }}</a>
  7. {% endfor %}
  8. </div>
  9. {% endfor %}
  10. </span>
  11. {% endif %}