12345678910111213141516171819202122232425262728 |
- {% set taxlist = children_only is defined ? taxonomylist.getChildPagesTags() : taxonomylist.get() %}
- {% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
- {% import _self as macro %}
- {% if taxlist %}
- <div class="btn-toolbar filters">
- <div data-toggle="buttons" class="btn-group">
- <label class="btn btn-default tous" data-filter="">
- <input type="radio" name="options">
- Tous
- </label>
- {% for tax,value in taxlist[taxonomy] %}
- {% set label_class = uri.param(taxonomy) == tax ? 'label-primary' : 'label-secondary' %}
- <label class="btn btn-default {{ macro.pageLinkName(tax) }}" data-filter="{{tax}}">
- <input type="radio" name="options" >
- {{tax}}
- </label>
- {% endfor %}
- </div>
- <div class="btn-group ">
- <label class="btn-default archive">
- <a href="/archive">archive</a>
- </label>
- </div>
- </div>
- {% endif %}
|