proxitok/views/tag.latte
2022-03-15 22:52:54 +01:00

17 lines
528 B
Plaintext

{layout '../layouts/default.latte'}
{block header}
{if $feed->info->detail->profileThumb !== ''}
<figure class="figure is-96x96">
<img src="{path('/stream?url=' . urlencode($feed->info->detail->profileThumb))}" />
</figure>
{/if}
<p class="title">{$feed->info->detail->title}</p>
<p class="subtitle">{include '../components/rss.latte'}</p>
<p>Videos: {number($feed->info->stats->videoCount)} / Views: {number($feed->info->stats->viewCount)}</p>
{/block}
{block content}
{include '../components/feed.latte'}
{/block}