aboutsummaryrefslogtreecommitdiff
path: root/themes/neonxp/layouts/shortcodes/quote.html
blob: 09bb07cd26db62cdae740938c5fb998b1515272f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<blockquote>
    <p>{{ .Inner | markdownify }}</p>
    {{- if or (.Get "author") (.Get "source") -}}
    <span class="cite"><span>― </span>
        {{- if .Get "author" -}}
        <span>
            {{- .Get "author" -}}{{- if .Get "source" -}}, {{ end -}}
        </span>
        {{- end -}}
        {{- with .Get "url" -}}<a href="{{ . }}">{{- end -}}
            <cite>{{ .Get "source" }}</cite>
        {{- if .Get "url" -}}</a>{{- end -}}
    </span>
    {{- end -}}
</blockquote>