diff options
Diffstat (limited to 'layouts/partials/footer.html')
-rw-r--r-- | layouts/partials/footer.html | 64 |
1 files changed, 22 insertions, 42 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 3800b98..171d3ba 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html | |||
@@ -1,55 +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 | <div class="grid"> | 4 | <hgroup> |
5 | <div class="flex col"> | 5 | <h3>{{ .Site.Title | upper }}</h3> |
6 | <section> | 6 | <p>{{ .Site.Params.description }}</p> |
7 | <h4>Contact Info</h4> | 7 | <div> |
8 | <p>Phone: {{ .Site.Params.phone }}</p> | ||
9 | <p>Email: {{ .Site.Params.email }}</p> | ||
10 | </section> | ||
11 | <section> | ||
12 | <h4>Connect</h4> | 8 | <h4>Connect</h4> |
13 | <ul> | 9 | <ul> |
14 | {{ range $key, $value := .Site.Social }} | 10 | {{ range $key, $value := .Site.Social }} |
15 | <li> | 11 | <li> |
16 | {{ partial "social.html" (dict "social" $key "username" $value) }} | 12 | {{ partial "social.html" (dict "social" $key "username" $value) }} |
17 | </li> | 13 | </li> |
18 | {{ end }} | 14 | {{ end }} |
19 | </ul> | 15 | </ul> |
20 | </section> | 16 | </div> |
21 | </div> | 17 | </hgroup> |
22 | {{ with .Site.Params.friends }} | 18 | <div class="flex col align-end"> |
23 | <div class="friends-list"> | 19 | <h4>Get Around</h4> |
24 | <h3>Friends</h3> | ||
25 | <ul> | 20 | <ul> |
26 | {{ range . }} | 21 | {{ range .Site.Menus.main }} |
27 | <li> | 22 | <li><a href="{{ .URL }}">{{ .Name }}</a></li> |
28 | <a href="{{ .url }}" target="_blank"> | ||
29 | {{ if isset . "icon" }} | ||
30 | <img src="{{ .icon }}" alt="{{ .name }}" /> | ||
31 | {{ else }} | ||
32 | {{ .name }} | ||
33 | {{ end }} | ||
34 | </a> | ||
35 | </li> | ||
36 | {{ end }} | 23 | {{ end }} |
37 | </ul> | 24 | </ul> |
38 | </div> | 25 | </div> |
39 | {{ end }} | 26 | </div> |
40 | <section> | 27 | <div class="flex row space-between"> |
41 | <h4>Navigation</h4> | 28 | <div>Powered by <a href="https://gohugo.io">Hugo</a> & Blackbear (v{{.Site.Params.themeVersion }})</div> |
42 | <ul> | 29 | <div> |
43 | {{ range .Site.Menus.main }} | 30 | <span title="site version">v{{.Site.Params.siteVersion}}</span> |
44 | <li><a href="{{ .URL }}">{{ .Name }}</a></li> | ||
45 | {{ end }} | ||
46 | </ul> | ||
47 | </section> | ||
48 | </div> | 31 | </div> |
32 | <div>© Copyright {{ now.Format "2006" }} | All Rights Reserved</div> | ||
33 | </div> | ||
49 | </div> | 34 | </div> |
50 | <div class="poweredby"> | 35 | </footer> \ No newline at end of file |
51 | Powered by <a href="https://gohugo.io">Hugo</a> & Blackbear | ||
52 | </div> | ||
53 | <div class="copyright">© Copyright {{ now.Format "2006" }} | All Rights Reserved | ||
54 | </div> | ||
55 | </footer> | ||