blob: d60e941fa0c7a8254d60a8611a30f0ad84dcf68d (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<footer>
<div class="container">
<h3>{{ .Site.Title }}</h3>
<div class="grid">
<div class="flex col">
<section>
<h4>Contact Info</h4>
<p>Phone: {{ .Site.Params.phone }}</p>
<p>Email: {{ .Site.Params.email }}</p>
</section>
<section>
<h4>Connect</h4>
<ul>
{{ range $key, $value := .Site.Social }}
<li>
{{ partial "social.html" (dict "social" $key "username" $value) }}
</li>
{{ end }}
</ul>
</section>
</div>
{{ with .Site.Params.friends }}
<div class="friends-list">
<h3>Friends</h3>
<ul>
{{ range . }}
<li>
<a href="{{ .url }}" target="_blank">
{{ if isset . "icon" }}
<img src="{{ .icon }}" alt="{{ .name }}" />
{{ else }}
{{ .name }}
{{ end }}
</a>
</li>
{{ end }}
</ul>
</div>
{{ end }}
<section>
<h4>Navigation</h4>
<ul>
{{ range .Site.Menus.main }}
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
{{ end }}
</ul>
</section>
</div>
</div>
<div class="copyright">© Copyright {{ now.Format "2006" }} | All Rights Reserved
</div>
</footer>
|