profile
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 19s

This commit is contained in:
schrumpel
2023-11-28 22:24:40 +01:00
parent 8b9677bb76
commit 267a1427c3
4 changed files with 46 additions and 14 deletions

View File

@ -1,10 +1,20 @@
@include(snippets/header)
<div id="main">
<h1>{{ user.user }}@if(user.avatar)&nbsp;<a href="/{{ user.avatar }}"><img src="/t/{{ user.avatar }}.webp" style="width: 24px" /></a>@endif</h1>
<p>ID: {{ user.user_id }}</p>
<p>{{ count.f0cks }} f0ck{{ count.f0cks == 1 ? '' : 's' }}</p>
<p>{{ count.favs }} fav{{ count.favs == 1 ? '' : 's' }}</p>
<p>Joined: {{ user.created_at }}</p>
<div class="profile_head">
@if(user.avatar)
<div class="profile_head_avatar">
<img src="/t/{{ user.avatar }}.webp" style="display: grid;width: 55px" />
</div>
@endif
<div class="layersoffear">
<div class="profile_head_username">
<span>{{ user.user }}</span>
</div>
<div class="profile_head_user_stats">
ID: {{ user.user_id }} {{ count.f0cks }} f0ck{{ count.f0cks == 1 ? '' : 's' }} {{ count.favs }} fav{{ count.favs == 1 ? '' : 's' }} Joined: {{ user.created_at }}
</div>
</div>
</div>
<h2>f0cks:</h2>
@if('items' in f0cks)