summaryrefslogtreecommitdiffstats
path: root/layouts/partials/article-types/quote.html
blob: f27d189560674ffffa09b0ded983b35a4c8d849e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<blockquote class="mb-8 pl-6 border-l-4 border-[--type-quote] italic text-2xl text-text">
  "{{ .Params.quote_text }}"
</blockquote>

{{ if .Params.quote_author }}
<div class="text-right text-text-dim mb-12">
  — {{ .Params.quote_author }}
</div>
{{ end }}

{{ if .Content }}
<div class="prose prose-invert max-w-none">
  {{ .Content }}
</div>
{{ end }}