Merge 9b68fc463b88f34641a8fe946386d629264d45d8 into d3d90be8a4ea04433d95d02a1dc07b0014c5b8b8
This commit is contained in:
commit
4b390809e4
@ -43,35 +43,60 @@
|
||||
<nav class="nav">
|
||||
<div class="logo">
|
||||
{{- $label_text := (site.Params.label.text | default site.Title) }}
|
||||
|
||||
{{- if site.Title }}
|
||||
<a href="{{ "" | absLangURL }}" accesskey="h" title="{{ $label_text }} (Alt + H)">
|
||||
{{- if site.Params.label.icon }}
|
||||
{{- $img := resources.Get site.Params.label.icon }}
|
||||
{{- if $img }}
|
||||
{{- $processableFormats := (slice "jpg" "jpeg" "png" "tif" "bmp" "gif") -}}
|
||||
{{- if hugo.IsExtended -}}
|
||||
{{- $processableFormats = $processableFormats | append "webp" -}}
|
||||
<a
|
||||
accesskey="h"
|
||||
href="{{ "" | absLangURL }}"
|
||||
title="{{ $label_text }} (Alt + H)"
|
||||
>
|
||||
{{- if site.Params.label.icon -}}
|
||||
{{- $img := resources.Get site.Params.label.icon -}}
|
||||
|
||||
{{- if $img -}}
|
||||
{{- $processableFormats := (slice "jpg" "jpeg" "png" "tif" "bmp" "gif") -}}
|
||||
|
||||
{{- if hugo.IsExtended -}}
|
||||
{{- $processableFormats = $processableFormats | append "webp" -}}
|
||||
{{- end -}}
|
||||
|
||||
{{- $prod := (hugo.IsProduction | or (eq site.Params.env "production")) -}}
|
||||
|
||||
{{- if and (in $processableFormats $img.MediaType.SubType) (eq $prod true) -}}
|
||||
{{- if site.Params.label.iconHeight -}}
|
||||
{{- $img = $img.Resize (printf "x%d" site.Params.label.iconHeight) -}}
|
||||
|
||||
{{ else -}}
|
||||
{{- $img = $img.Resize "x30" -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
|
||||
<img
|
||||
alt=""
|
||||
aria-label="logo"
|
||||
src="{{ $img.Permalink }}"
|
||||
width="{{- $img.Width | default "30" -}}"
|
||||
height="{{- $img.Height | default "30" -}}"
|
||||
>
|
||||
|
||||
{{- else }}
|
||||
<img
|
||||
alt=""
|
||||
aria-label="logo"
|
||||
src="{{- site.Params.label.icon | absURL -}}"
|
||||
width="{{- site.Params.label.iconWidth | default "30" -}}"
|
||||
height="{{- site.Params.label.iconHeight | default "30" -}}"
|
||||
>
|
||||
{{- end -}}
|
||||
|
||||
{{- else if hasPrefix site.Params.label.iconSVG "<svg" }}
|
||||
{{ site.Params.label.iconSVG | safeHTML }}
|
||||
{{- end -}}
|
||||
{{- $prod := (hugo.IsProduction | or (eq site.Params.env "production")) }}
|
||||
{{- if and (in $processableFormats $img.MediaType.SubType) (eq $prod true)}}
|
||||
{{- if site.Params.label.iconHeight }}
|
||||
{{- $img = $img.Resize (printf "x%d" site.Params.label.iconHeight) }}
|
||||
{{ else }}
|
||||
{{- $img = $img.Resize "x30" }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
<img src="{{ $img.Permalink }}" alt="" aria-label="logo"
|
||||
height="{{- site.Params.label.iconHeight | default "30" -}}">
|
||||
{{- else }}
|
||||
<img src="{{- site.Params.label.icon | absURL -}}" alt="" aria-label="logo"
|
||||
height="{{- site.Params.label.iconHeight | default "30" -}}">
|
||||
{{- end -}}
|
||||
{{- else if hasPrefix site.Params.label.iconSVG "<svg" }}
|
||||
{{ site.Params.label.iconSVG | safeHTML }}
|
||||
{{- end -}}
|
||||
{{- $label_text -}}
|
||||
</a>
|
||||
|
||||
{{- $label_text -}}
|
||||
</a>
|
||||
{{- end }}
|
||||
|
||||
<div class="logo-switches">
|
||||
{{- if (not site.Params.disableThemeToggle) }}
|
||||
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
||||
|
Loading…
x
Reference in New Issue
Block a user