diff options
| author | Zach Berwaldt <17715430+zberwaldt@users.noreply.github.com> | 2023-10-20 22:58:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-20 22:58:33 -0400 |
| commit | c516745d0dc2c6a51777ef00ef116c1b26e95ec7 (patch) | |
| tree | adcce31c689d3e63ab3ea8bd36f9ac384eca4cad /layouts/partials/footer.html | |
| parent | b34e09f8fe1011963934dbf40dc92f0b258592ca (diff) | |
| parent | 6bfd84ae2c7aad006c3bc84cdce9aebf894cbe62 (diff) | |
Develop
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 |
