mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
b893a09aa6
Closes #12514
22 lines
713 B
HTML
22 lines
713 B
HTML
{{- $u := urls.Parse .Destination -}}
|
|
{{- $src := $u.String -}}
|
|
{{- if not $u.IsAbs -}}
|
|
{{- $path := strings.TrimPrefix "./" $u.Path }}
|
|
{{- with or (.PageInner.Resources.Get $path) (resources.Get $path) -}}
|
|
{{- $src = .RelPermalink -}}
|
|
{{- with $u.RawQuery -}}
|
|
{{- $src = printf "%s?%s" $src . -}}
|
|
{{- end -}}
|
|
{{- with $u.Fragment -}}
|
|
{{- $src = printf "%s#%s" $src . -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- $attributes := merge .Attributes (dict "alt" .Text "src" $src "title" (.Title | transform.HTMLEscape)) -}}
|
|
<img
|
|
{{- range $k, $v := $attributes -}}
|
|
{{- if $v -}}
|
|
{{- printf " %s=%q" $k $v | safeHTMLAttr -}}
|
|
{{- end -}}
|
|
{{- end -}}>
|
|
{{- /**/ -}}
|