11 lines
251 B
HTML
11 lines
251 B
HTML
|
{{ if .Inner }}
|
||
|
<figure>
|
||
|
<img src='{{ .Get "src" }}' class='{{ .Get "class" }}' />
|
||
|
<figcaption>
|
||
|
<small>{{ .Inner }}</small>
|
||
|
</figcaption>
|
||
|
</figure>
|
||
|
{{ else }}
|
||
|
<img src='{{ .Get "src" }}' class='{{ .Get "class" }}' />
|
||
|
{{ end }}
|