hatecomputers.club/templates/home.html

9 lines
234 B
HTML

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