2022-01-25 08:08:31 -05:00
|
|
|
{layout '../layouts/default.latte'}
|
2022-01-03 10:11:24 -05:00
|
|
|
|
2022-01-25 08:08:31 -05:00
|
|
|
{block header}
|
2022-01-25 11:20:11 -05:00
|
|
|
<figure class="figure is-96x96">
|
2022-03-11 17:18:26 -05:00
|
|
|
<img src="{path('/stream?url=' . urlencode($feed->info->detail->avatarThumb))}" />
|
2022-01-25 11:20:11 -05:00
|
|
|
</figure>
|
2022-03-11 17:18:26 -05:00
|
|
|
<p class="title">{$feed->info->detail->uniqueId}'s profile</p>
|
|
|
|
<p class="subtitle">{$feed->info->detail->signature}</p>
|
|
|
|
<p>Following: {number($feed->info->stats->followingCount)} / Followers: {number($feed->info->stats->followerCount)}</p>
|
|
|
|
<p>Hearts: {number($feed->info->stats->heartCount)} / Videos: {$feed->info->stats->videoCount}</p>
|
|
|
|
<a href="{path('/@' . $feed->info->detail->uniqueId . '/rss')}">RSS</a>
|
2022-01-25 08:08:31 -05:00
|
|
|
{/block}
|
2022-01-03 10:11:24 -05:00
|
|
|
|
2022-01-25 08:08:31 -05:00
|
|
|
{block content}
|
|
|
|
{include '../components/feed.latte'}
|
|
|
|
{/block}
|