-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathfooter.html
51 lines (48 loc) · 1.69 KB
/
footer.html
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
<section class="ttui-container bg-background-07 pb-ls-s pt-ls-s">
<ttui-footer
privacy-policy-url="https://www.thethingsindustries.com/document/privacypolicy/"
terms-url="https://www.thethingsindustries.com/document/eula/"
>
<ttui-footer-nav slot="menu" title="The Things Stack">
{{- range .Site.Menus.main }}
<ttui-footer-nav-item>
<a href="{{ .URL }}">{{ .Name }}</a>
</ttui-footer-nav-item>
{{- end }}
</ttui-footer-nav>
{{- if .Site.Menus.contributing }}
<ttui-footer-nav slot="menu" title="Contributing">
{{- range .Site.Menus.contributing }}
<ttui-footer-nav-item>
<a href="{{ .URL }}">{{ .Name }}</a>
</ttui-footer-nav-item>
{{- end }}
</ttui-footer-nav>
{{ end -}}
{{- if .Site.Menus.about_us }}
<ttui-footer-nav slot="menu" title="About Us">
{{- range .Site.Menus.about_us }}
<ttui-footer-nav-item>
<a href="{{ .URL }}">{{ .Name }}</a>
</ttui-footer-nav-item>
{{- end }}
</ttui-footer-nav>
{{ end -}}
{{- if .Site.Menus.social_media }}
<ttui-footer-social slot="social">
{{- range .Site.Menus.social_media }}
<ttui-footer-social-icon
platform="{{ .Name | lower }}"
url="{{ .URL }}"
align-left
></ttui-footer-social-icon>
{{- end }}
</ttui-footer-social>
</ttui-footer>
{{ end -}}
</section>
{{- $script := resources.Get "js/vendor/basicLightbox.min.js" }}
<script src="{{ $script.Permalink }}"></script>
{{- $script := resources.Get "js/theme.js" | js.Build }}
<script src="{{ $script.Permalink }}" integrity="{{ $script.Data.Integrity }}" crossorigin="anonymous"></script>
{{- partial "intercom.html" . -}}