mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 12:09:26 +00:00
10 lines
366 B
Plaintext
10 lines
366 B
Plaintext
{# Preset theme selector #}
|
|
<wa-select appearance="filled" size="small" value="default" pill class="preset-theme-selector">
|
|
<wa-icon slot="prefix" name="paintbrush" variant="regular"></wa-icon>
|
|
{% for theme in collections.theme | sort %}
|
|
<wa-option value="{{ theme.page.fileSlug }}">
|
|
{{ theme.data.title }}
|
|
</wa-option>
|
|
{% endfor %}
|
|
</wa-select>
|