This commit is contained in:
@ -1,10 +1,20 @@
|
||||
@include(snippets/header)
|
||||
<div id="main">
|
||||
<h1>{{ user.user }}@if(user.avatar) <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)
|
||||
|
Reference in New Issue
Block a user