20 lines
481 B
Plaintext
20 lines
481 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{include 'components/head.latte', title: 'Challenge'}
|
|
|
|
<body>
|
|
{include 'components/navbar.latte'}
|
|
<section class="hero is-primary">
|
|
<div class="hero-body">
|
|
<div class="container">
|
|
<p class="title">{$feed->info->detail->challenge->title}</p>
|
|
<p class="subtitle">{$feed->info->detail->challenge->desc}</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{include 'components/feed.latte'}
|
|
{include 'components/footer.latte'}
|
|
</body>
|
|
</html>
|