summaryrefslogtreecommitdiff
path: root/layouts/partials/footer.html
blob: ba8b7c99fbbed90f06c38165aa2cb9a1bc8eb2a8 (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="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>
         &copy; {{ now.Format "2006"}} {{ .Site.Params.author}}
      </p>
    </layer>
  </div>
</footer>