10 lines
470 B
HTML
10 lines
470 B
HTML
|
{{- if .Site.Params.enableDarkMode -}}
|
||
|
{{- $hide := or (and $.IsHome $.Site.Params.hideThemeToggleInHome) (and (not $.IsHome) $.Site.Params.hideThemeToggle) -}}
|
||
|
{{- if not $hide -}}
|
||
|
<a id="theme-switcher" href="#">
|
||
|
{{- partial "utils/icon.html" (dict "$" $ "name" "sun" "class" "theme-icon-light") -}}
|
||
|
{{- partial "utils/icon.html" (dict "$" $ "name" "moon" "class" "theme-icon-dark") -}}
|
||
|
</a>
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|