blakerain.com/layouts/shortcodes/quote.html
Blake Rain 05096de5ff
Some checks failed
check / check (push) Failing after 18s
feat: changover to using hugo
2024-06-01 01:10:49 +01:00

15 lines
287 B
HTML

{{ $author := .Get "author" }}
{{ $url := .Get "url" }}
<figure class="quote">
<p>{{ .Inner }}</p>
{{ if $author }}
<cite>
{{ if $url }}
<a href="{{ $url }}">{{ $author }}</a>
{{ else }}
{{ $author }}
{{ end }}
</cite>
{{ end }}
</figure>