mirror of https://github.com/onweru/compose.git

weru
23.22.2023 ceaf306671ac10ba0a56c852edb4e2c178557964
1
2
3
4
5
6
7
8
9
{{- $normal := .Get 0 }}
{{- $dark := .Get 1 }}
{{- $alt := .Get 2 }}
{{- $litPath := absURL (printf "images/%s" $normal) }}
{{- $darkPath := absURL (printf "images/%s" $dark) }}
<picture class="nav_logo" data-lit="{{ $litPath }}" data-dark="{{ $darkPath }}">
  <source srcset="{{ $darkPath }}" media="(prefers-color-scheme: dark)">
  <img srcset="{{ $litPath }}" alt="{{ $alt }}">
</picture>