hatecomputers.club/templates/home.html

8 lines
170 B
HTML

{{ define "content" }}
<h2 class="blinky">hello there!</h2>
<p>current peeps:</p>
{{ range $user := .Users }}
<p>{{ $user.Username }}</p>
{{ end }}
{{ end }}