mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
632ad74fc5
Fixes #12203
15 lines
461 B
HTML
15 lines
461 B
HTML
{{- $u := urls.Parse .Destination -}}
|
|
{{- $src := $u.String -}}
|
|
{{- if not $u.IsAbs -}}
|
|
{{- with or (.Page.Resources.Get $u.Path) (resources.Get $u.Path) -}}
|
|
{{- $src = .RelPermalink -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- $attributes := merge .Attributes (dict "alt" .Text "src" $src "title" .Title) -}}
|
|
<img
|
|
{{- range $k, $v := $attributes -}}
|
|
{{- if $v -}}
|
|
{{- printf " %s=%q" $k $v | safeHTMLAttr -}}
|
|
{{- end -}}
|
|
{{- end -}}>
|
|
{{- /**/ -}}
|