15 lines
391 B
HTML
15 lines
391 B
HTML
{{- if .IsBlock -}}
|
|
<figure>
|
|
<img
|
|
src="{{ .Destination | safeURL }}"
|
|
{{- with .PlainText }}alt="{{ . }}"{{ end -}}
|
|
/>
|
|
{{- with .Title }}<figcaption>{{ . }}</figcaption>{{ end -}}
|
|
</figure>
|
|
{{- else -}}
|
|
<img
|
|
src="{{ .Destination | safeURL }}"
|
|
{{- with .PlainText }}alt="{{ . }}"{{ end -}}
|
|
{{- with .Title }}title="{{ . }}"{{ end -}}
|
|
/>
|
|
{{- end -}}
|