summaryrefslogtreecommitdiff
path: root/templates/home.html
diff options
context:
space:
mode:
authorrain <rain@hatecomputers.club>2024-10-14 22:26:21 -0400
committerrain <rain@hatecomputers.club>2024-10-14 22:26:21 -0400
commit84eb502bcddd0a37fb27a81bee5312c3321fb05a (patch)
treebc064016ad2f7080afe2f3aed9d939b27ba5d472 /templates/home.html
parent86aaf49138c2987442a5f225985f0f9904ce74ef (diff)
downloadhatecomputers.club-84eb502bcddd0a37fb27a81bee5312c3321fb05a.tar.gz
hatecomputers.club-84eb502bcddd0a37fb27a81bee5312c3321fb05a.zip
improve home page club member CSS (#14)
whoops, didn't open an issue. oh well. made the landing page look better while maintaining the spirit and vibes of the project Co-authored-by: Mark Snyder <20092441+mkwsnyder@users.noreply.github.com> Reviewed-on: https://git.hatecomputers.club/hatecomputers/hatecomputers.club/pulls/14
Diffstat (limited to 'templates/home.html')
-rw-r--r--templates/home.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/home.html b/templates/home.html
index 2d913e6..5c410b3 100644
--- a/templates/home.html
+++ b/templates/home.html
@@ -5,15 +5,15 @@
{{ range $user := .Users }}
<div class="club-member">
<div class="avatar">
- <div style="background-image: url('{{ $user.Avatar }}')"></div>
+ <img src="{{ $user.Avatar }}" alt="Profile picture for {{ $user.Username }}">
</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 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>