hugo-theme-termlite/layouts/_default/_markup/render-blockquote.html
Eryn Wells e04e7dafa3 Render blockquotes in a figure
Render cite and caption too.
2024-11-06 09:31:16 -08:00

11 lines
321 B
HTML

<figure class="figure figure--main-column figure--blockquote">
<blockquote
{{- with .Attributes.cite }} cite="{{ . }}"{{ end -}}>
{{ .Text }}
</blockquote>
{{ with .Attributes.caption }}
<figcaption class="figure__caption--blockquote">
{{ . | safeHTML }}
</figcaption>
{{ end }}
</figure>