Schema
Mocks
Template
<div class="Sorting{% if class %} {{ class }}{% endif %}">
{% if queries_amount %}
<p class="Sorting-searchResultAmount u-typo-headline6">{{ queries_amount }}</p>
{% endif %}
<span class="Sorting-currentSort">{{ current_sorting }}</span>
{% for item in items %}
{% if item.value %}
<button type="submit" name="{{ name }}" value="{{ item.value }}" class="Sorting-button{% if item.active %} is-active{% endif %}" aria-label="{{ item.accessible_text }}"{% if item.active %} aria-current="true"{% endif %}>
{% include "@elements/icon/icon.html.twig" with {
name: "chevron",
class: "Sorting-icon Sorting-icon" ~ item.value
} only %}
</button>
{% endif %}
{% endfor %}
</div>