Compare commits

...

2 Commits

Author SHA1 Message Date
Jürgen Mummert b525f37862 Wrap select filters in dedicated container 2026-02-22 12:14:24 +01:00
Jürgen Mummert 1b477c24da Wrap event filter tag buttons in dedicated container 2026-02-22 12:11:46 +01:00
@@ -1,10 +1,13 @@
<div id="eventfilters" data-eventlist-id="{{ targetEventListId|default('eventlist')|e('html_attr') }}">
<div class="tag-buttons">
<button type="button" data-filter-tag="all" class="active" aria-pressed="true">Alle</button>
{% for tag in tagButtons|default([]) %}
<button type="button" data-filter-tag="{{ tag.id }}" aria-pressed="false">{{ tag.title }} ({{ tag.count }})</button>
{% endfor %}
</div>
<div class="select-filters">
<div class="widget-select places">
<label for="location-filter" class="visually-hidden">Orte:</label>
<select id="location-filter">
@@ -24,6 +27,7 @@
{% endfor %}
</select>
</div>
</div>
<p id="eventfilter-status" class="visually-hidden" aria-live="polite"></p>
</div>