SimpleTube/resources/mainPage.html

41 lines
1.1 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-11-17 11:58:39 -06: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-11-20 10:55:41 -06:00
<h1><a href="/">SimpleTube</a></h1>
2023-10-28 19:08:28 -05:00
</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-27 22:39:06 -06:00
<p>SimpleTube is a Youtube client that aims to be free, fast, and javascript free. (and has no ads!) </p>
2024-02-13 16:04:23 -06:00
<p>
<a href="https://codeberg.org/Bingus_Violet/SimpleTube">Codeberg</a>
</p>
2023-11-27 22:39:06 -06:00
<div class="row container-fluid">
{RESULTS}
</div>
2023-10-27 00:38:23 -05:00
</main>
</body>
</html>