proxitok/views/tag.latte

19 lines
551 B
Plaintext
Raw Normal View History

2022-01-25 13:08:31 +00:00
{layout '../layouts/default.latte'}
2022-06-12 10:50:41 +00:00
{var $has_rss = true}
2022-01-25 13:08:31 +00:00
{block header}
2022-05-24 12:10:41 +00:00
{if $data->info->detail->profileThumb !== ''}
2022-03-15 21:52:54 +00:00
<figure class="figure is-96x96">
2022-05-24 12:10:41 +00:00
<img src="{path('/stream?url=' . urlencode($data->info->detail->profileThumb))}" />
2022-03-15 21:52:54 +00:00
</figure>
{/if}
2022-05-24 12:10:41 +00:00
<p class="title">{$data->info->detail->title}</p>
2022-03-15 21:52:54 +00:00
<p class="subtitle">{include '../components/rss.latte'}</p>
2022-05-24 12:10:41 +00:00
<p>Videos: {number($data->info->stats->videoCount)} / Views: {number($data->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}