2023-10-26 12:35:34 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2023-10-27 00:38:23 -05:00
|
|
|
|
2023-10-26 12:35:34 -05:00
|
|
|
<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">
|
|
|
|
<link rel="stylesheet" href="/mainStyle.css">
|
2023-10-26 12:35:34 -05:00
|
|
|
|
2023-10-28 19:08:28 -05:00
|
|
|
|
|
|
|
<title>{VIDEO_TITLE}</title>
|
2023-10-26 12:35:34 -05:00
|
|
|
</head>
|
2023-10-27 00:38:23 -05:00
|
|
|
|
2023-10-26 12:35:34 -05:00
|
|
|
<body>
|
2023-10-28 19:08:28 -05:00
|
|
|
<div id="titleBar" class="row container-fluid">
|
|
|
|
<div class="col-sm-5">
|
|
|
|
<h1><a href="/">Simpletube</a></h1>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-7">
|
|
|
|
<form action="/search">
|
|
|
|
<input type="text" placeholder="Search" name="q">
|
|
|
|
</form>
|
|
|
|
</div>
|
2023-10-27 00:38:23 -05:00
|
|
|
</div>
|
2023-10-26 12:35:34 -05:00
|
|
|
<div id="videoContainer">
|
2023-10-27 00:38:23 -05:00
|
|
|
<video id="videoPlayer" controls autoplay poster="{VIDEO_THUMBNAIL}">
|
2023-10-26 12:35:34 -05:00
|
|
|
<source src="/video?q={VIDEOID}" type="video/mp4">
|
|
|
|
</video>
|
|
|
|
</div>
|
|
|
|
<hr>
|
2023-10-27 00:38:23 -05:00
|
|
|
<main>
|
|
|
|
<h2 id="title">{VIDEO_TITLE}</h2>
|
|
|
|
<div id="description">
|
2023-10-29 00:01:40 -05:00
|
|
|
{CACHE_WARNING}
|
2023-10-27 00:38:23 -05:00
|
|
|
<h2>Description: <br></h2>
|
2023-10-29 00:01:40 -05:00
|
|
|
<p>{VIDEO_DESCRIPTION}</p>
|
2023-10-27 00:38:23 -05:00
|
|
|
</div>
|
|
|
|
</main>
|
2023-10-26 12:35:34 -05:00
|
|
|
</body>
|
2023-10-27 00:38:23 -05:00
|
|
|
|
2023-10-26 12:35:34 -05:00
|
|
|
</html>
|