diff options
Diffstat (limited to 'templates/home.html')
| -rw-r--r-- | templates/home.html | 12 |
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> |
