blob: 9897f4ae0c060291e9e5356a79f1dad924a25f5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{{ define "main" }}
<section class="home-hero">
<h1 class="sitename">{{ site.Title }}</h1>
{{ with .Content }}
<div class="home-about">{{ . }}</div>
{{ end }}
{{ partial "menu.html" (dict "menuID" "main" "page" .) }}
{{ with .Params.socials }}
<div class="home-social-links" aria-label="Social links">
{{ range . }}
<a href="{{ .url }}" rel="me noopener noreferrer" target="_blank">{{ .name }}</a>
{{ end }}
</div>
{{ end }}
</section>
<footer class="home-footer">This site doesnt store any information. Privacy is a human right. Go donate to the EFF, Signal and the Matrix Foundation.</footer>
{{ end }}
|