taxonomylist.html.twig 480 B

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