diff options
Diffstat (limited to 'layouts/partials/footer.html')
-rw-r--r-- | layouts/partials/footer.html | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index eb1e7e7..171d3ba 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html | |||
@@ -1,5 +1,35 @@ | |||
1 | <footer> | 1 | <footer> |
2 | <div class="container"> | 2 | <div class="container"> |
3 | <h3>{{ .Site.Title }}</h3> | 3 | <div class="flex row space-between"> |
4 | <hgroup> | ||
5 | <h3>{{ .Site.Title | upper }}</h3> | ||
6 | <p>{{ .Site.Params.description }}</p> | ||
7 | <div> | ||
8 | <h4>Connect</h4> | ||
9 | <ul> | ||
10 | {{ range $key, $value := .Site.Social }} | ||
11 | <li> | ||
12 | {{ partial "social.html" (dict "social" $key "username" $value) }} | ||
13 | </li> | ||
14 | {{ end }} | ||
15 | </ul> | ||
16 | </div> | ||
17 | </hgroup> | ||
18 | <div class="flex col align-end"> | ||
19 | <h4>Get Around</h4> | ||
20 | <ul> | ||
21 | {{ range .Site.Menus.main }} | ||
22 | <li><a href="{{ .URL }}">{{ .Name }}</a></li> | ||
23 | {{ end }} | ||
24 | </ul> | ||
25 | </div> | ||
26 | </div> | ||
27 | <div class="flex row space-between"> | ||
28 | <div>Powered by <a href="https://gohugo.io">Hugo</a> & Blackbear (v{{.Site.Params.themeVersion }})</div> | ||
29 | <div> | ||
30 | <span title="site version">v{{.Site.Params.siteVersion}}</span> | ||
31 | </div> | ||
32 | <div>© Copyright {{ now.Format "2006" }} | All Rights Reserved</div> | ||
33 | </div> | ||
4 | </div> | 34 | </div> |
5 | </footer> \ No newline at end of file | 35 | </footer> \ No newline at end of file |