summaryrefslogtreecommitdiff
path: root/templates/home.html
blob: 5c410b35cc5fbed48b81ca2b2fffe67e686bb94f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ 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">
      <img src="{{ $user.Avatar }}" alt="Profile picture for {{ $user.Username }}">
    </div>
    <div class="about">
      <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>
    </div>
    <div class="club-bio">{{ $user.Bio }}</div>
  </div>
  {{ end }}
</div>
{{ end }}