summaryrefslogtreecommitdiff
path: root/templates/home.html
diff options
context:
space:
mode:
authorElizabeth <elizabeth@simponic.xyz>2024-04-09 18:39:14 -0400
committersimponic <simponic@hatecomputers.club>2024-04-09 18:39:14 -0400
commit1d75bf7489527925217bd5611ba7910c0ffe077c (patch)
tree3b6e6056912648a88e1e42c1e42ed7e58e2d4701 /templates/home.html
parentee49015cc90e6c136ad94243fffc9241b9506a36 (diff)
downloadhatecomputers.club-1d75bf7489527925217bd5611ba7910c0ffe077c.tar.gz
hatecomputers.club-1d75bf7489527925217bd5611ba7910c0ffe077c.zip
profiles (#7)
Reviewed-on: https://git.hatecomputers.club/hatecomputers/hatecomputers.club/pulls/7 Co-authored-by: Elizabeth <elizabeth@simponic.xyz> Co-committed-by: Elizabeth <elizabeth@simponic.xyz>
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 }}