16 lines
406 B
HTML
16 lines
406 B
HTML
|
{{- if .IsBlock }}
|
||
|
<figure id="figure-{{ .Ordinal }}">
|
||
|
<img src="{{ .Destination | safeURL }}"
|
||
|
{{- with .Text }} alt="{{ . }}"{{ end -}}
|
||
|
>
|
||
|
{{- with .Title }}
|
||
|
<figcaption>{{ . }}</figcaption>
|
||
|
{{- end }}
|
||
|
</figure>
|
||
|
{{ else -}}
|
||
|
<img src="{{ .Destination | safeURL }}"
|
||
|
{{- with .Text }} alt="{{ . }}"{{ end -}}
|
||
|
{{- with .Title }} title="{{ . }}"{{ end -}}
|
||
|
>
|
||
|
{{- end }}
|