10 lines
364 B
HTML
10 lines
364 B
HTML
{{ $caption := .caption | markdownify }}
|
|
{{ $content := .content | markdownify }}
|
|
|
|
<figure class="align-items-center d-flex flex-column justify-content-center paige-figure">
|
|
<div class="{{ if $caption }} mb-2 {{ end }} mw-100">{{ $content }}</div>
|
|
{{ with $caption }}
|
|
<figcaption class="figure-caption">{{ . }}</figcaption>
|
|
{{ end }}
|
|
</figure>
|