WAY more STUFF
This commit is contained in:
parent
d42d2dd9e8
commit
8b6f6e5228
8 changed files with 237 additions and 41 deletions
|
@ -1,20 +0,0 @@
|
|||
body {
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
#videoPlayer {
|
||||
margin: auto;
|
||||
padding: 0;
|
||||
object-fit: contain;
|
||||
display: block;
|
||||
height: 100%;
|
||||
max-width: 100%;
|
||||
/* height: 80vh; */
|
||||
}
|
||||
|
||||
#videoContainer {
|
||||
height: 80%;
|
||||
max-width: 100vw;
|
||||
display: flex;
|
||||
background-color: black;
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
@ -8,14 +9,25 @@
|
|||
|
||||
<title>Document</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="titleBar">
|
||||
<h1><a href="/">Simpletube</a></h1>
|
||||
</div>
|
||||
<div id="videoContainer">
|
||||
<video id="videoPlayer" controls muted="muted" autoplay poster="{VIDEO_THUMBNAIL}">
|
||||
<video id="videoPlayer" controls autoplay poster="{VIDEO_THUMBNAIL}">
|
||||
<source src="/video?q={VIDEOID}" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
<hr>
|
||||
<h2 id="title">{VIDEO_TITLE}</h2>
|
||||
<p id="description">{VIDEO_DESCRIPTION}</p>
|
||||
<main>
|
||||
<h2 id="title">{VIDEO_TITLE}</h2>
|
||||
{CACHE_WARNING}
|
||||
<div id="description">
|
||||
<h2>Description: <br></h2>
|
||||
<p id="description">{VIDEO_DESCRIPTION}</p>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue