proxitok/templates/views/tag.latte

23 lines
661 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-11-26 22:51:45 +00:00
{var $og = $info->meta->og}
{var $og_content = $info->detail->profileLarger}
{var $og_url = url_tag($info->detail->title)}
2022-01-25 13:08:31 +00:00
{block header}
2022-11-26 22:51:45 +00:00
{if $info->detail->profileLarger !== ''}
2022-11-26 21:25:48 +00:00
<figure class="image is-inline-block is-128x128">
2022-11-26 22:51:45 +00:00
<img class="is-rounded" src="{url_stream($info->detail->profileLarger)}" />
2022-03-15 21:52:54 +00:00
</figure>
{/if}
2022-11-26 22:51:45 +00:00
<p class="title">{$info->detail->title}</p>
2022-03-15 21:52:54 +00:00
<p class="subtitle">{include '../components/rss.latte'}</p>
2022-11-26 22:51:45 +00:00
<p>Videos: {number($info->stats->videoCount)} / Views: {number($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}