summaryrefslogtreecommitdiff
path: root/templates/home.html
blob: 2d913e6c375ebcc9a1af5ec1c0f15791e6f7aa32 (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">
      <div style="background-image: url('{{ $user.Avatar }}')"></div>
    </div>
    <div class="about">
      <div>name: {{ $user.Username }}</div>
      <div>pronouns: {{ $user.Pronouns }}</div>
      <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>
{{ end }}