blob: 8a58e75f7c0d9c3947c5239ae2a5befd68382712 (
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
|
<footer class="bg-black w-100 pa3 near-white">
<div class="mw7 center">
{{ if in .Site.Params.mainSections .Section }}
<a
href="/{{ .Section }}/index.xml"
class="link color-inherit db tc mv2 dim"
>
Follow {{ .Section }} updates via RSS feed
<i class="fa-solid fa-rss"></i>
</a>
{{ end }}
<ul class="ma0 pa0 list overflow-hidden avenir tc bb b--white-40">
{{ range .Site.Menus.footer }}
<li class="dib dim">
<a class="db f6 pa2 link near-white" href="{{ .URL | relLangURL }}"
>{{ T .Name | safeHTML }}
</a>
</li>
{{ end }}
</ul>
{{ with .Site.GetPage "footer.md" }}
{{ .Content }}
{{ end }}
{{ partial "attribution.html" .Site.Params }}
<div class="tc mv2">
Made in anger with
<a
href="https://git.oscarnajera.com/hugo-minimalist-theme/about/"
class="link silver hover-near-white"
>
hugo-minimalist
</a>
theme.
</div>
</div>
</footer>
|