2022-01-01 14:14:57 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2022-01-03 10:11:24 -05:00
|
|
|
|
|
|
|
{include 'components/head.latte', title: $feed->info->detail->user->nickname}
|
|
|
|
|
2022-01-01 14:14:57 -05:00
|
|
|
<body>
|
2022-01-03 10:11:24 -05:00
|
|
|
{include 'components/navbar.latte'}
|
2022-01-02 11:39:22 -05:00
|
|
|
<section class="hero is-primary">
|
|
|
|
<div class="hero-body">
|
2022-01-05 15:25:49 -05:00
|
|
|
<div class="container has-text-centered">
|
|
|
|
<figure class="figure is-96x96">
|
|
|
|
<img src="{path('stream?url=' . urlencode($feed->info->detail->user->avatarThumb))}" />
|
|
|
|
</figure>
|
2022-01-03 07:43:22 -05:00
|
|
|
<p class="title">{$feed->info->detail->user->uniqueId}'s profile</p>
|
|
|
|
<p class="subtitle">{$feed->info->detail->user->signature}</p>
|
2022-01-05 15:25:49 -05:00
|
|
|
<p>Following: {number($feed->info->detail->stats->followingCount)} / Followers: {number($feed->info->detail->stats->followerCount)}</p>
|
|
|
|
<p>Hearts: {number($feed->info->detail->stats->heartCount)} / Videos: {$feed->info->detail->stats->videoCount}</p>
|
2022-01-02 11:39:22 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2022-01-03 10:11:24 -05:00
|
|
|
{include 'components/feed.latte'}
|
|
|
|
{include 'components/footer.latte'}
|
2022-01-01 14:14:57 -05:00
|
|
|
</body>
|
|
|
|
</html>
|