13 lines
311 B
HTML
13 lines
311 B
HTML
{{ 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 }}
|
|
{{ end }}
|