blob: 80ff82c00b81adc49427eb9b6b98ed73e7033a8b (
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
|
<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>
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"}} Adam Whitlock
</p>
</layer>
</div>
</footer>
|