9 lines
267 B
HTML
Raw Normal View History

2019-07-13 22:34:21 +02:00
{{ $mode := .Get 0 }}
{{ if eq $mode "on" }}
<img src="{{ .Page.Site.BaseURL }}img/on-off/switch-on-icon_smal.png" alt="On">
{{ else if eq $mode "off"}}
<img src="{{ .Page.Site.BaseURL }}img/on-off/switch-off-icon_smal.png" alt="Off">
{{ else }}
???
{{end}}