category.html.twig 344 B

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