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>
|
2024-04-08 19:15:31 -04:00
|
|
|
<img src="{{ $user.Avatar }}" alt="{{ $user.Username }}" />
|
2024-04-08 19:04:19 -04:00
|
|
|
{{ end }}
|
2024-03-27 17:38:53 -04:00
|
|
|
{{ end }}
|