2022-01-01 14:14:57 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2022-01-02 11:39:22 -05:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
2022-01-03 07:43:22 -05:00
|
|
|
<title>{$feed->info->detail->user->nickname} - TikTok</title>
|
2022-01-02 11:39:22 -05:00
|
|
|
<link rel="stylesheet" href="https://unpkg.com/bulmaswatch/superhero/bulmaswatch.min.css">
|
2022-01-03 08:20:52 -05:00
|
|
|
<link rel="stylesheet" href="{assets('feed.css', 'styles')}">
|
2022-01-01 14:14:57 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-01-03 07:43:22 -05:00
|
|
|
{include '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 07:43:22 -05:00
|
|
|
{include 'feed.latte'}
|
|
|
|
{include 'footer.latte'}
|
2022-01-01 14:14:57 -05:00
|
|
|
</body>
|
|
|
|
</html>
|