11 lines
220 B
HTML
11 lines
220 B
HTML
|
<figure>
|
||
|
<img src="{{.Get "src"}}" {{ with .Get "alt" }}alt="{{ . }}"{{ end }} />
|
||
|
{{ with .Get "title" }}
|
||
|
<figcaption>
|
||
|
<h4>
|
||
|
{{ . }}
|
||
|
</h4>
|
||
|
</figcaption>
|
||
|
{{ end }}
|
||
|
</figure>
|