15 lines
637 B
HTML
15 lines
637 B
HTML
<figure {{ with .Get "class" }}class="{{.}}"{{ end }}>
|
|
{{ with .Get "link"}}<a href="{{.}}">{{ end }}
|
|
<img src="{{ .Get "src" }}" {{ if or (.Get "alt") (.Get "caption") }}alt="{{ with .Get "alt"}}{{.}}{{else}}{{ .Get "caption" }}{{ end }}"{{ end }} />
|
|
{{ if .Get "link"}}</a>{{ end }}
|
|
{{ if or (or (.Get "title") (.Get "caption")) (.Get "attr")}}
|
|
<figcaption>
|
|
{{ with .Get "title" }}
|
|
<span class="img--caption">{{ . }}</span>
|
|
{{ end }}
|
|
{{ with (.Get "caption")}}
|
|
<span class="img--caption">{{ . }}</span>
|
|
{{ end }}
|
|
</figcaption>
|
|
{{ end }}
|
|
</figure>
|