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: 'Home'}
|
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-fullheight-with-navbar">
|
2022-01-01 14:14:57 -05:00
|
|
|
<div class="hero-body">
|
|
|
|
<div class="container has-text-centered">
|
2022-01-03 11:06:25 -05:00
|
|
|
<p class="title">Welcome to TikTok Alt-Frontend!</p>
|
2022-01-01 18:42:03 -05:00
|
|
|
<p>Search user:</p>
|
2022-01-01 18:06:00 -05:00
|
|
|
<form id="username_form">
|
|
|
|
<div class="field has-addons has-addons-centered">
|
|
|
|
<div class="control">
|
2022-01-03 10:11:24 -05:00
|
|
|
<input name="username" class="input" type="text" placeholder="Type username" required />
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<button class="button is-success" type="submit">Go</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<hr />
|
|
|
|
<p>Search tag:</p>
|
|
|
|
<form id="tag_form">
|
|
|
|
<div class="field has-addons has-addons-centered">
|
|
|
|
<div class="control">
|
|
|
|
<input name="tag" class="input" type="text" placeholder="Type tag" required />
|
2022-01-01 18:06:00 -05:00
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<button class="button is-success" type="submit">Go</button>
|
|
|
|
</div>
|
2022-01-01 14:14:57 -05:00
|
|
|
</div>
|
2022-01-01 18:06:00 -05:00
|
|
|
</form>
|
2022-01-01 18:42:03 -05:00
|
|
|
<hr />
|
|
|
|
<p>Trending:</p>
|
|
|
|
<a class="button is-success" href="./trending">Go</a>
|
2022-01-01 14:14:57 -05:00
|
|
|
</div>
|
2022-01-02 11:39:22 -05:00
|
|
|
</div>
|
|
|
|
<div class="hero-foot">
|
2022-01-03 10:11:24 -05:00
|
|
|
{include 'components/footer.latte'}
|
2022-01-02 11:39:22 -05:00
|
|
|
</div>
|
2022-01-01 14:14:57 -05:00
|
|
|
</section>
|
2022-01-03 10:11:24 -05:00
|
|
|
<script src="{assets('home.js', 'scripts')}"></script>
|
2022-01-01 14:14:57 -05:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|