2024-03-26 18:00:05 -04:00
|
|
|
{{ define "content" }}
|
2024-04-09 18:39:14 -04:00
|
|
|
<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">
|
2024-10-14 22:24:14 -04:00
|
|
|
<img src="{{ $user.Avatar }}" alt="Profile picture for {{ $user.Username }}">
|
2024-04-09 18:39:14 -04:00
|
|
|
</div>
|
|
|
|
<div class="about">
|
2024-10-14 22:24:14 -04:00
|
|
|
<div class="club-member-name">{{ $user.Username }}</div>
|
|
|
|
<div><span class="text-muted">pronouns:</span> <span class="bolder">{{ $user.Pronouns }}</span></div>
|
|
|
|
<div><span class="text-muted">location:</span> <span class="bolder">{{ $user.Location }}</span></div>
|
|
|
|
<div><span class="text-muted">www:</span> <span class="bolder"><a href="{{ $user.Website }}">{{ $user.Website }}</a></span></div>
|
2024-04-09 18:39:14 -04:00
|
|
|
</div>
|
2024-10-14 22:24:14 -04:00
|
|
|
<div class="club-bio">{{ $user.Bio }}</div>
|
2024-04-09 18:39:14 -04:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2024-03-27 17:38:53 -04:00
|
|
|
{{ end }}
|