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

Ray
11.00.2023 726a11f5e7b84a5968a20d524af18ae57428e1d3
1
2
3
4
5
6
7
8
{{- $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 }}">
  <img src="{{ $litPath }}" alt="{{ $alt }}">
</picture>