Files
virtual-kubelet/website/layouts/shortcodes/svg.html
2019-01-24 09:37:29 -08:00

11 lines
349 B
HTML

{{ $src := .Get "src" }}
{{ $path := printf "static/%s" $src | relURL }}
{{ $figureId := $.Page.Scratch.Get "numFigures" }}
<figure id="figure-{{ $figureId }}">
{{ $path | readFile | safeHTML }}
<figcaption>
<strong>Figure {{ $figureId }}</strong>{{ with .Get "caption" }}. {{ . | markdownify }}{{ end }}
</figcaption>
</figure>