summaryrefslogtreecommitdiff
path: root/templates/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/home.html')
-rw-r--r--templates/home.html18
1 files changed, 17 insertions, 1 deletions
diff --git a/templates/home.html b/templates/home.html
index 1c03377..76bbc6a 100644
--- a/templates/home.html
+++ b/templates/home.html
@@ -1,3 +1,19 @@
{{ define "content" }}
- <p class="blinky">under construction!</p>
+<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><a href="{{ $user.Website }}">{{ $user.Website }}</a></div>
+ <div class="club-bio">{{ $user.Bio }}</div>
+ </div>
+ </div>
+ {{ end }}
+</div>
{{ end }}