proxitok/views/user.blade.php

23 lines
798 B
PHP
Raw Normal View History

2022-01-01 19:14:57 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<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-01 23:42:03 +00:00
<title>{{ $feed->info->detail->user->nickname }} - TikTok</title>
2022-01-01 19:14:57 +00:00
<link rel="stylesheet" href="https://unpkg.com/bulmaswatch/superhero/bulmaswatch.min.css">
2022-01-01 23:42:03 +00:00
<link rel="stylesheet" href="../styles/feed.css">
2022-01-01 19:14:57 +00:00
</head>
<body>
<section class="hero is-primary">
<div class="hero-body">
<div class="container">
2022-01-01 23:42:03 +00:00
<p class="title">{{ $feed->info->detail->user->uniqueId }}'s profile</p>
<p class="subtitle">{{ $feed->info->detail->user->signature }}</p>
2022-01-01 19:14:57 +00:00
</div>
</div>
</section>
2022-01-01 23:42:03 +00:00
@include('feed')
2022-01-01 19:14:57 +00:00
</body>
</html>