added quote shortcode and articles archetype. general cleanup of the footer partial.
[theme-danix.xyz.git] / layouts / shortcodes / quote.html
1 <blockquote class="blockquote">
2 <p>
3 {{.Inner}}
4 </p>
5 {{ if .Get "source" }}
6 <footer class="blockquote-footer">
7 <cite title="by: {{ with .Get "source"}}{{.}}{{ end }}">
8 {{ with .Get "src"}}
9 by
10 <a href="{{.}}" target="_blank" rel="noopener noreferrer">
11 {{ end }}
12 {{ with .Get "source" }}{{.}}{{ end }}
13 {{ with .Get "src"}}
14 </a>
15 {{ end }}
16 </cite>
17 </footer>
18 {{ end }}
19 </blockquote>