aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/footer.html
blob: 171d3baf458861b535ed37f70a7a356acbc5f529 (plain)
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
27
28
29
30
31
32
33
34
35
<footer>
  <div class="container">
    <div class="flex row space-between">
      <hgroup>
        <h3>{{ .Site.Title | upper }}</h3>
        <p>{{ .Site.Params.description }}</p>
        <div>
          <h4>Connect</h4>
          <ul>
            {{ range $key, $value := .Site.Social }}
            <li>
              {{ partial "social.html" (dict "social" $key "username" $value) }}
            </li>
            {{ end }}
          </ul>
        </div>
      </hgroup>
      <div class="flex col align-end">
        <h4>Get Around</h4>
        <ul>
          {{ range .Site.Menus.main }}
          <li><a href="{{ .URL }}">{{ .Name }}</a></li>
          {{ end }}
        </ul>
      </div>
    </div>
    <div class="flex row space-between">
      <div>Powered by <a href="https://gohugo.io">Hugo</a> &amp; Blackbear (v{{.Site.Params.themeVersion }})</div>
      <div>
        <span title="site version">v{{.Site.Params.siteVersion}}</span>
      </div>
      <div>&copy; Copyright {{ now.Format "2006" }} | All Rights Reserved</div>
    </div>
  </div>
</footer>