proxitok/views/user.latte

20 lines
513 B
Plaintext
Raw Normal View History

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