listmonk/static/public/templates/home.html

18 lines
450 B
HTML
Raw Normal View History

2021-09-27 23:47:23 +08:00
{{ 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>
2021-09-27 23:47:23 +08:00
</section>
{{ template "footer" .}}
{{ end }}