summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/quote.html
blob: 05d0c947ca8c072efe59e610f53131cecdb15153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<blockquote class="blockquote">
    <p>
        {{.Inner}}
    </p>
    {{ if .Get "source" }}
    <footer class="blockquote-footer">
		<cite title="by: {{ with .Get "source"}}{{.}}{{ end }}">
            {{ with .Get "src"}}
                by
                <a href="{{.}}" target="_blank" rel="noopener noreferrer">
            {{ end }}
            {{ with .Get "source" }}{{.}}{{ end }}
            {{ with .Get "src"}}
                </a>
            {{ end }}
			</cite>
		</footer>
    {{ end }}
</blockquote>