proxitok/views/music.latte

21 lines
555 B
Plaintext
Raw Normal View History

2022-01-17 20:11:40 +00:00
<!DOCTYPE html>
<html lang="en">
{include 'components/head.latte', title: 'Music'}
<body>
{include 'components/navbar.latte'}
<section class="hero is-primary">
<div class="hero-body">
<div class="container has-text-centered">
<p class="title">{$feed->info->detail->music->title}</p>
<p class="subtitle">{$feed->info->detail->music->desc}</p>
<p>Videos: {number($feed->info->detail->stats->videoCount)}</p>
</div>
</div>
</section>
{include 'components/feed.latte'}
{include 'components/footer.latte'}
</body>
</html>