13 lines
294 B
HTML
13 lines
294 B
HTML
{{- $path := .path -}}
|
|
{{- $alt := .alt -}}
|
|
{{- $caption := .caption -}}
|
|
|
|
{{ if $path }}
|
|
<figure class="image">
|
|
<img src="{{- $path | absURL -}}" {{ with $alt }}alt="{{- . -}}"{{ end }} />
|
|
{{ with $caption }}
|
|
<figcaption>{{ . }}</figcaption>
|
|
{{ end }}
|
|
</figure>
|
|
{{ end }}
|