13 lines
558 B
HTML
13 lines
558 B
HTML
{{- $img_destination := .Destination }}
|
|
{{ if .Page.Site.Params.CDN.enable }}
|
|
{{ $img_destination = (print .Page.Site.Params.CDN.HOST .Page.File.Dir "/" .Destination) }}
|
|
{{ end }}
|
|
|
|
{{ if .Title -}}
|
|
<figure class="max-w-2xl mx-auto rounded overflow-hidden shadow-lg">
|
|
<img alt="{{ $.Text }}" src="{{ $img_destination | safeURL }}" />
|
|
<figcaption class="p-2 text-center">{{ with $.Title | safeHTML }}{{ . }}{{ end }}</figcaption>
|
|
</figure>
|
|
{{- else }}
|
|
<img class="mx-auto" alt="{{ $.Text }}" src="{{ $img_destination | safeURL }}" />
|
|
{{ end -}} |