SimpleTube/resources/player.html

33 lines
739 B
HTML
Raw Normal View History

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">
{CSS_HEADER}
<title>Document</title>
</head>
2023-10-27 00:38:23 -05:00
2023-10-26 12:35:34 -05:00
<body>
2023-10-27 00:38:23 -05:00
<div id="titleBar">
<h1><a href="/">Simpletube</a></h1>
</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>
{CACHE_WARNING}
<div id="description">
<h2>Description: <br></h2>
<p id="description">{VIDEO_DESCRIPTION}</p>
</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>