SimpleTube/static/index.html

42 lines
1.3 KiB
HTML
Raw Normal View History

2023-10-27 00:38:23 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-10-28 19:08:28 -05:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
2023-10-30 09:09:17 -05:00
<link rel="stylesheet" href="/mainStyle.css">
2023-10-27 00:38:23 -05:00
<title>SimpleTube</title>
</head>
<body>
<div id="titleBar" class="row container-fluid">
<div class="col-6">
2023-10-28 19:08:28 -05:00
<h1><a href="/">Simpletube</a></h1>
</div>
<div class="col-6">
2023-10-28 19:08:28 -05:00
<form action="/search">
<input type="text" placeholder="Search" name="q">
</form>
</div>
2023-10-27 00:38:23 -05:00
</div>
<main>
<h1>Welcome to SimpleTube</h1>
2023-11-01 08:33:22 -05:00
<p>SimpleTube is a Youtube client that aims to be free and fast. (and have no ads!)
2023-10-27 00:38:23 -05:00
<br>
Currently SimpleTube does not have a trending tab or anything, so please use the search function at the top!
<br>
(Sorry!)</p>
<h2>More about the project: <br></h2>
<p>
<a href="https://github.com/Violets-puragtory/SimpleTube">Github</a>
<a href="https://violets-purgatory.dev">The developer</a>
2023-10-27 00:38:23 -05:00
</p>
</main>
</body>
</html>