2022-01-01 14:14:57 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2022-01-03 10:11:24 -05:00
|
|
|
|
|
|
|
{include 'components/head.latte', title: $feed->info->detail->user->nickname}
|
|
|
|
|
2022-01-01 14:14:57 -05:00
|
|
|
<body>
|
2022-01-03 10:11:24 -05:00
|
|
|
{include 'components/navbar.latte'}
|
2022-01-02 11:39:22 -05:00
|
|
|
<section class="hero is-primary">
|
|
|
|
<div class="hero-body">
|
|
|
|
<div class="container">
|
2022-01-03 07:43:22 -05:00
|
|
|
<p class="title">{$feed->info->detail->user->uniqueId}'s profile</p>
|
|
|
|
<p class="subtitle">{$feed->info->detail->user->signature}</p>
|
2022-01-02 11:39:22 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
2022-01-03 10:11:24 -05:00
|
|
|
{include 'components/feed.latte'}
|
|
|
|
{include 'components/footer.latte'}
|
2022-01-01 14:14:57 -05:00
|
|
|
</body>
|
|
|
|
</html>
|