guestbook/ui/html/pages/home.tmpl.html

13 lines
311 B
HTML
Raw Normal View History

2024-10-16 04:34:57 +00:00
{{ define "title" }}Home{{ end }}
{{ define "main" }}
{{ if .IsAuthenticated }}
<h2>Tools</h2>
<p>
<a href="/guestbooks">Guestbooks</a>
</p>
{{ else }}
<h2>Welcome</h2>
Welcome to webweav.ing, a collection of webmastery tools created by the <a href="https://32bit.cafe">32-Bit Cafe</a>.
{{ end }}
2024-10-16 04:34:57 +00:00
{{ end }}