mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
feat(layouts): add iconWidth support for icon
This commit is contained in:
parent
b906338dc8
commit
ba7161d728
@ -54,17 +54,23 @@
|
|||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- $prod := (hugo.IsProduction | or (eq site.Params.env "production")) }}
|
{{- $prod := (hugo.IsProduction | or (eq site.Params.env "production")) }}
|
||||||
{{- if and (in $processableFormats $img.MediaType.SubType) (eq $prod true)}}
|
{{- if and (in $processableFormats $img.MediaType.SubType) (eq $prod true)}}
|
||||||
{{- if site.Params.label.iconHeight }}
|
{{- if (and (site.Params.label.iconHeight) (site.Params.label.iconWidth)) }}
|
||||||
|
{{- $img = $img.Resize (printf "%dx%d" site.Params.lable.iconWidth site.Params.label.iconHeight) }}
|
||||||
|
{{- else if site.Params.label.iconHeight}}
|
||||||
{{- $img = $img.Resize (printf "x%d" site.Params.label.iconHeight) }}
|
{{- $img = $img.Resize (printf "x%d" site.Params.label.iconHeight) }}
|
||||||
|
{{ else if site.Params.label.iconWidth }}
|
||||||
|
{{- $img = $img.Resize (printf "%dx" site.Params.label.iconWidth) }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{- $img = $img.Resize "x30" }}
|
{{- $img = $img.Resize "30x30" }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
<img src="{{ $img.Permalink }}" alt="" aria-label="logo"
|
<img src="{{ $img.Permalink }}" alt="" aria-label="logo"
|
||||||
height="{{- site.Params.label.iconHeight | default "30" -}}">
|
height="{{- site.Params.label.iconHeight | default "30" -}}"
|
||||||
|
width="{{- site.Params.label.iconWidth | default "30" -}}">
|
||||||
{{- else }}
|
{{- else }}
|
||||||
<img src="{{- site.Params.label.icon | absURL -}}" alt="" aria-label="logo"
|
<img src="{{- site.Params.label.icon | absURL -}}" alt="" aria-label="logo"
|
||||||
height="{{- site.Params.label.iconHeight | default "30" -}}">
|
height="{{- site.Params.label.iconHeight | default "30" -}}
|
||||||
|
width="{{- site.Params.label.iconWidth | default "30" -}}">
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- else if hasPrefix site.Params.label.iconSVG "<svg" }}
|
{{- else if hasPrefix site.Params.label.iconSVG "<svg" }}
|
||||||
{{ site.Params.label.iconSVG | safeHTML }}
|
{{ site.Params.label.iconSVG | safeHTML }}
|
||||||
|
Loading…
Reference in New Issue
Block a user