2022-01-25 08:08:31 -05:00
|
|
|
{layout '../layouts/default.latte'}
|
2022-01-03 10:11:24 -05:00
|
|
|
|
2022-06-12 06:50:41 -04:00
|
|
|
{var $has_rss = true}
|
|
|
|
|
2022-11-26 17:51:45 -05:00
|
|
|
{var $og = $info->meta->og}
|
|
|
|
{var $og_content = $info->detail->profileLarger}
|
|
|
|
{var $og_url = url_tag($info->detail->title)}
|
|
|
|
|
2022-01-25 08:08:31 -05:00
|
|
|
{block header}
|
2022-11-26 17:51:45 -05:00
|
|
|
{if $info->detail->profileLarger !== ''}
|
2022-11-26 16:25:48 -05:00
|
|
|
<figure class="image is-inline-block is-128x128">
|
2022-11-26 17:51:45 -05:00
|
|
|
<img class="is-rounded" src="{url_stream($info->detail->profileLarger)}" />
|
2022-03-15 17:52:54 -04:00
|
|
|
</figure>
|
|
|
|
{/if}
|
2022-11-26 17:51:45 -05:00
|
|
|
<p class="title">{$info->detail->title}</p>
|
2022-03-15 17:52:54 -04:00
|
|
|
<p class="subtitle">{include '../components/rss.latte'}</p>
|
2023-04-02 14:37:36 -04:00
|
|
|
<p>Views: {number($info->stats->viewCount)}</p>
|
|
|
|
{embed '../components/details.latte', title: 'Details'}
|
|
|
|
{block content}
|
|
|
|
<p>Is commerce: {bool_to_str($info->detail->isCommerce)}</p>
|
|
|
|
{/block}
|
|
|
|
{/embed}
|
2022-01-25 08:08:31 -05:00
|
|
|
{/block}
|
2022-01-03 10:11:24 -05:00
|
|
|
|
2022-01-25 08:08:31 -05:00
|
|
|
{block content}
|
|
|
|
{include '../components/feed.latte'}
|
|
|
|
{/block}
|