hatecomputers.club/templates/home.html

8 lines
170 B
HTML
Raw Normal View History

2024-03-26 18:00:05 -04:00
{{ define "content" }}
2024-04-08 19:04:19 -04:00
<h2 class="blinky">hello there!</h2>
<p>current peeps:</p>
{{ range $user := .Users }}
<p>{{ $user.Username }}</p>
{{ end }}
2024-03-27 17:38:53 -04:00
{{ end }}