summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/quote.html
blob: 1ed5c3c398ca6bbf6df97e7a09e6486e53192763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{- $source := .Get "source" -}}
{{- $src := .Get "src" -}}

<blockquote class="my-8 pl-6 border-l-4 border-accent/50 italic text-text-dim">
  <p class="text-lg">{{ .Inner }}</p>
  {{- if $source -}}
    <footer class="mt-4 text-sm not-italic text-text-dim">
      {{- if $src -}}
        — <a href="{{ $src }}" class="text-accent hover:underline">{{ $source }}</a>
      {{- else -}}
        — {{ $source }}
      {{- end -}}
    </footer>
  {{- end -}}
</blockquote>