blob: f3971e0f267ac8fe154e0584d77b1f7a04b847a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<footer class="footer">
<div class="content has-text-centered">
<layer>
{{ if .Site.Menus.social }}
{{ if .Site.Params.fontawesomeToken }}
{{ range .Site.Menus.social }}
<a class="footer-social" href="{{ .URL }}">{{ .Pre }}</a>
{{ end }}
{{ else }}
{{ range .Site.Menus.social }}
<a class="footer-social" href="{{ .URL }}">{{ .Name }}</a>
{{ end }}
{{ end }}
{{ end }}
</layer>
<layer>
<p>
<!-- I'd love for you to keep my name, but at least the link to the theme would be nice. Thanks! - Whitlock -->
Website theme is <a class="has-text-weight-semibold" href="http://github.com/alloydwhitlock/huey">Huey</a> by <a class="has-text-weight-semibold" href="https://adamwhitlock.com">Adam Whitlock</a>.
</p>
<p>
© {{ now.Format "2006"}} {{ .Site.Params.author}}
</p>
</layer>
</div>
</footer>
|