2022-01-03 10:11:24 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2022-01-03 11:06:25 -05:00
|
|
|
{include 'components/head.latte', title: 'Tag'}
|
2022-01-03 10:11:24 -05:00
|
|
|
|
|
|
|
<body>
|
|
|
|
{include 'components/navbar.latte'}
|
|
|
|
<section class="hero is-primary">
|
|
|
|
<div class="hero-body">
|
2022-01-05 15:25:49 -05:00
|
|
|
<div class="container has-text-centered">
|
2022-01-03 10:11:24 -05:00
|
|
|
<p class="title">{$feed->info->detail->challenge->title}</p>
|
|
|
|
<p class="subtitle">{$feed->info->detail->challenge->desc}</p>
|
2022-01-05 15:25:49 -05:00
|
|
|
<p>Videos: {number($feed->info->detail->stats->videoCount)} / Views: {number($feed->info->detail->stats->viewCount)}</p>
|
2022-01-03 10:11:24 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{include 'components/feed.latte'}
|
|
|
|
{include 'components/footer.latte'}
|
|
|
|
</body>
|
|
|
|
</html>
|