diff options
| author | JustZvan <justzvan@justzvan.xyz> | 2026-03-24 20:14:42 +0100 |
|---|---|---|
| committer | JustZvan <justzvan@justzvan.xyz> | 2026-03-24 20:14:42 +0100 |
| commit | a60a600522b9c638cf06fc484d80209dfb7d5c20 (patch) | |
| tree | 9801ae967ac65724333abf15a35d445a05167095 /themes/JustZvan/layouts/home.html | |
feat: initial commit
Diffstat (limited to 'themes/JustZvan/layouts/home.html')
| -rw-r--r-- | themes/JustZvan/layouts/home.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/themes/JustZvan/layouts/home.html b/themes/JustZvan/layouts/home.html new file mode 100644 index 0000000..9897f4a --- /dev/null +++ b/themes/JustZvan/layouts/home.html @@ -0,0 +1,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 }} |