2018-07-24 00:03:34 +00:00
|
|
|
{{ $fig := newScratch }}
|
|
|
|
{{ if .Get "caption" }}
|
|
|
|
{{ $fig.Set "caption" (.Get "caption") }}
|
|
|
|
{{ else if .Get "alt" }}
|
|
|
|
{{ $fig.Set "caption" (.Get "alt") }}
|
|
|
|
{{ end }}
|
2018-07-21 07:08:41 +00:00
|
|
|
<figure {{ with .Get "class" }}class="{{.}}"{{ end }}>
|
|
|
|
{{ with .Get "link"}}<a href="{{.}}">{{ end }}
|
2018-07-24 00:03:34 +00:00
|
|
|
<img src="{{ .Get "src" }}"
|
|
|
|
{{ with $.Scratch.Get "caption" }}alt="{{ . }}"{{ end }}
|
|
|
|
{{ with .Get "align" }}align="{{ . }}"{{ end }}
|
|
|
|
{{ with .Get "width" }}width="{{ . }}"{{ end }}
|
|
|
|
/>
|
|
|
|
{{ with .Get "link"}}</a>{{ end }}
|
|
|
|
{{ with ($fig.Get "caption") }}
|
2018-07-21 07:08:41 +00:00
|
|
|
<figcaption>
|
2018-07-24 00:03:34 +00:00
|
|
|
<span class="img--caption">Figure {{ $.Page.Scratch.Get "fig" }}. {{ . }}</span>
|
2018-07-21 07:08:41 +00:00
|
|
|
</figcaption>
|
|
|
|
{{ end }}
|
|
|
|
</figure>
|
2018-07-24 00:03:34 +00:00
|
|
|
{{ .Page.Scratch.Add "fig" 1 }}
|
|
|
|
{{ $fig.Delete "caption"}}
|