mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-07-28 12:41:36 -05:00
18 lines
480 B
HTML
18 lines
480 B
HTML
<figure>
|
|
{{ $resource_title := "" }}
|
|
{{ with .Get "src" }}
|
|
{{ with $.Page.Resources.Get . }}
|
|
{{ $resource_title = .Title }}
|
|
{{ partial "embed-resource.html" . }}
|
|
{{ else }}
|
|
{{ errorf "resource %q not found" . }}
|
|
{{ end }}
|
|
{{ else }}
|
|
{{ .Inner }}
|
|
{{ end }}
|
|
|
|
{{ with or (.Get "caption") (.Get 0) $resource_title }}
|
|
<figcaption>{{ . | markdownify }}</figcaption>
|
|
{{ end }}
|
|
</figure>
|