Files
bobatheme/layouts/_shortcodes/figure.html

16 lines
396 B
HTML

<figure>
{{ with .Get "src" }}
{{ with $.Page.Resources.Get . }}
{{ partial "embed-resource.html" . }}
{{ else }}
{{ errorf "resource %q not found" . }}
{{ end }}
{{ else }}
{{ .Inner }}
{{ end }}
{{ with or (.Get "caption") (.Get 0) .Title }}
<figcaption>{{ . | markdownify }}</figcaption>
{{ end }}
</figure>