-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwatch.html
More file actions
106 lines (74 loc) · 1.53 KB
/
Copy pathwatch.html
File metadata and controls
106 lines (74 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta
name="viewport"
content="width=device-width,initial-scale=1"
>
<base href="/theater/">
<title>
Nortex Theater — Watch
</title>
<link
rel="stylesheet"
href="css/style.css"
>
</head>
<body class="watch-page">
<header class="nav">
<a
class="brand"
href="."
>
NORTEX
<span>THEATER</span>
</a>
<a
class="back-link"
href="."
>
← Back
</a>
</header>
<main class="watch-main">
<div
id="playerWrap"
class="player-wrap"
>
<iframe
id="player"
src=""
width="100%"
height="600"
frameborder="0"
allowfullscreen
allow="autoplay; fullscreen; picture-in-picture">
</iframe>
<button
id="fullscreenButton"
class="player-fullscreen"
type="button"
>
⛶ Fullscreen
</button>
</div>
<section class="watch-info">
<div class="eyebrow">
NOW WATCHING
</div>
<h1 id="watchTitle">
Nortex Theater
</h1>
<p id="watchMeta">
Loading…
</p>
</section>
</main>
<script src="js/config.js"></script>
<!-- Site-wide Nortex blocker -->
<script src="js/blocker.js"></script>
<!-- Watch/player logic -->
<script src="js/watch.js"></script>
</body>
</html>