mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 12:09:26 +00:00
Co-authored-by: Lindsay M <126139086+lindsaym-fa@users.noreply.github.com> Co-authored-by: lindsaym-fa <dev@lindsaym.design>
10 lines
411 B
Plaintext
10 lines
411 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 }}"{{ ' data-alpha="remove"' if theme.noAlpha }}>
|
|
{{ theme.data.title }}
|
|
</wa-option>
|
|
{% endfor %}
|
|
</wa-select>
|