w2ng/themes/hugo-w2ng/layouts/_default/_markup/render-image.html
2020-01-09 16:21:40 +08:00

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 -}}