proxitok/views/tag.latte

13 lines
407 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-02-13 21:21:08 +00:00
<p class="title">{$feed->info->detail->title}</p>
<p class="subtitle">{$feed->info->detail->desc}</p>
<p>Videos: {number($feed->info->stats->videoCount)} / Views: {number($feed->info->stats->viewCount)}</p>
<a href="{path('tag/' . $feed->info->detail->title . '/rss')}">RSS</a>
2022-01-25 13:08:31 +00:00
{/block}
2022-01-25 13:08:31 +00:00
{block content}
{include '../components/feed.latte'}
{/block}