proxitok/views/tag.latte

17 lines
528 B
Plaintext
Raw Normal View History

2022-01-25 13:08:31 +00:00
{layout '../layouts/default.latte'}
2022-01-25 13:08:31 +00:00
{block header}
2022-03-15 21:52:54 +00:00
{if $feed->info->detail->profileThumb !== ''}
<figure class="figure is-96x96">
<img src="{path('/stream?url=' . urlencode($feed->info->detail->profileThumb))}" />
</figure>
{/if}
2022-03-11 22:18:26 +00:00
<p class="title">{$feed->info->detail->title}</p>
2022-03-15 21:52:54 +00:00
<p class="subtitle">{include '../components/rss.latte'}</p>
2022-03-11 22:18:26 +00:00
<p>Videos: {number($feed->info->stats->videoCount)} / Views: {number($feed->info->stats->viewCount)}</p>
2022-01-25 13:08:31 +00:00
{/block}
2022-01-25 13:08:31 +00:00
{block content}
{include '../components/feed.latte'}
{/block}