first commit

This commit is contained in:
julien
2025-01-14 17:52:22 +01:00
commit f392a81435
27 changed files with 1094 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{{ define "home" }}
{{ template "header" .}}
<section class="center">
<a href="admin" class="button">{{ L.T "users.login" }}</a>
<div class="home-options">
{{ if .EnablePublicSubPage }}
<a href="{{ .RootURL }}/subscription/form">{{ L.T "public.sub" }}</a>
{{ end }}
{{ if .EnablePublicArchive }}
<a href="{{ .RootURL }}/archive">{{ L.T "public.archiveTitle" }}</a>
{{ end }}
</div>
</section>
{{ template "footer" .}}
{{ end }}