taxonomylist.html.twig 587 B

123456789101112131415
  1. {% set taxlist = children_only is defined ? taxonomylist.getChildPagesTags() : taxonomylist.get() %}
  2. {% if taxlist %}
  3. <div data-toggle="buttons" class="btn-group">
  4. <label class="btn btn-default">
  5. <a class="filter" href="#" data-filter="">Tous</a>
  6. </label>
  7. {% for tax,value in taxlist[taxonomy] %}
  8. {% set label_class = uri.param(taxonomy) == tax ? 'label-primary' : 'label-secondary' %}
  9. <label class="btn btn-default">
  10. <a class="filter" href="#" data-filter="{{ tax }}">{{tax}}</a>
  11. </label>
  12. {% endfor %}
  13. </div>
  14. {% endif %}