congo/exampleSite/layouts/shortcodes/swatches.html

15 lines
411 B
HTML
Raw Normal View History

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