summaryrefslogtreecommitdiff
path: root/themes/blowfish/layouts/shortcodes/swatches.html
blob: 322db53e4ee9606ed6e50e13c07c4208151307e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="flex justify-between">
  <span
    class="w-full py-6 mr-3 rounded-md"
    {{ with .Get 0 }}style="background-color: {{ . }}"{{ end }}
  ></span>
  <span
    class="w-full py-6 mr-3 rounded-md"
    {{ with .Get 1 }}style="background-color: {{ . }}"{{ end }}
  ></span>
  <span
    class="w-full py-6 mr-3 rounded-md"
    {{ with .Get 2 }}style="background-color: {{ . }}"{{ end }}
  ></span>
</div>