www-from-model/layouts/_shortcodes/swatches.html
Michael Hanke 9b135ac09a
All checks were successful
Deploy on webserver / Build site and deploy on success (push) Successful in 39s
TMP Example site to have something to build while finishing the setup
2025-10-31 10:37:20 +01:00

14 lines
411 B
HTML

<div class="flex justify-between">
<span
class="mr-2 w-full rounded-md py-6"
{{ with .Get 0 }}style="background-color: {{ . }}"{{ end }}
></span>
<span
class="mr-2 w-full rounded-md py-6"
{{ with .Get 1 }}style="background-color: {{ . }}"{{ end }}
></span>
<span
class="mr-2 w-full rounded-md py-6"
{{ with .Get 2 }}style="background-color: {{ . }}"{{ end }}
></span>
</div>