hatecomputers.club/templates/home.html

21 lines
626 B
HTML
Raw Permalink Normal View History

2024-03-26 18:00:05 -04:00
{{ define "content" }}
<h2 class="blinky">hello there!</h2>
<p>current peeps in the club :D</p>
<div class="club-members">
{{ range $user := .Users }}
<div class="club-member">
<div class="avatar">
<div style="background-image: url('{{ $user.Avatar }}')"></div>
</div>
<div class="about">
<div>name: {{ $user.Username }}</div>
<div>pronouns: {{ $user.Pronouns }}</div>
2024-04-24 15:46:34 -04:00
<div>location: {{ $user.Location }}</div>
<div>www: <a href="{{ $user.Website }}">{{ $user.Website }}</a></div>
<div class="club-bio">{{ $user.Bio }}</div>
</div>
</div>
{{ end }}
</div>
2024-03-27 17:38:53 -04:00
{{ end }}