hugo-tufte/layouts/shortcodes/blockquote.html
2023-04-17 23:14:50 +01:00

8 lines
309 B
HTML

<blockquote cite="{{ .Get "cite" }}">
{{ .Inner | $.Page.RenderString (dict "display" "block") }}
<footer>
{{- with .Get "author" -}}{{ . }}{{- end -}}
{{- with .Get "cite" -}}, <cite>{{ . | markdownify }}</cite>{{- end -}}
{{- with .Get "detail" -}}, {{ . | markdownify }}{{- end -}}
</footer>
</blockquote>