2022-02-16 07:03:02 +03:00
|
|
|
{{$src := .Destination | safeURL }}
|
2022-07-01 21:27:50 +03:00
|
|
|
{{$width := index (split .Text "|") 1 | default "auto" }}
|
2022-02-16 07:03:02 +03:00
|
|
|
{{$external := strings.HasPrefix $src "http" }}
|
|
|
|
{{- if $external -}}
|
2022-07-01 21:27:50 +03:00
|
|
|
<img src="{{ $src }}" width="{{ $width }}" alt="{{ .Text }}" {{ with .Title }} title="{{ . }}" {{ end }} />
|
2022-02-16 07:03:02 +03:00
|
|
|
{{- else -}}
|
|
|
|
{{$fixedUrl := (cond (hasPrefix $src "/") $src (print "/" $src)) | urlize}}
|
2022-07-01 21:27:50 +03:00
|
|
|
<img src="{{.Page.Site.BaseURL}}{{ $fixedUrl }}" width="{{ $width }}" alt="{{ .Text }}" {{ with .Title }} title="{{ . }}" {{ end }} />
|
2022-02-16 07:03:02 +03:00
|
|
|
{{- end -}}
|