26 lines
837 B
Twig
Raw Normal View History

2019-04-02 19:54:29 +02:00
{% set taxlist = children_only is defined ? taxonomylist.getChildPagesTags() : taxonomylist.get() %}
{% if taxlist %}
2019-04-10 16:38:49 +02:00
<div class="btn-toolbar filters">
2019-04-08 18:00:38 +02:00
<div data-toggle="buttons" class="btn-group">
2019-04-10 16:38:49 +02:00
<label class="btn btn-default" data-filter="">
<input type="radio" name="options">
2019-04-08 18:00:38 +02:00
Tous
</label>
2019-04-02 19:54:29 +02:00
{% for tax,value in taxlist[taxonomy] %}
{% set label_class = uri.param(taxonomy) == tax ? 'label-primary' : 'label-secondary' %}
2019-04-10 16:38:49 +02:00
<label class="btn btn-default" data-filter="{{tax}}">
<input type="radio" name="options" >
2019-04-08 18:00:38 +02:00
{{tax}}
</label>
2019-04-02 19:54:29 +02:00
{% endfor %}
2019-04-08 18:00:38 +02:00
<div data-toggle="buttons" class="btn-group">
<label class="btn btn-default">
<a href="/archive">archive</a>
</label>
</div>
</div>
2019-04-10 16:38:49 +02:00
</div>
2019-04-02 19:54:29 +02:00
{% endif %}