-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwatch.html
More file actions
52 lines (47 loc) · 1.61 KB
/
watch.html
File metadata and controls
52 lines (47 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<!-- Responsiveness -->
<meta charset="UTF8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Page Title -->
<title>Crevolution - No Video</title>
<!-- Link Assets & CSS -->
<link rel="icon" href="/assets/img/logos/watermark.svg" type="image/png" sizes="16x16" />
<link rel="stylesheet" href="/css/bootstrap.css">
<link href="/css/index.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap">
</head>
<body>
<!-- Link JS -->
<script src="/js/bootstrap.js"></script>
<script src="/js/jquery.js"></script>
<!-- Navbar located in /assets/nav.html -->
<div id="nav-placeholder">
</div>
<script>
$(function(){
$("#nav-placeholder").load("assets/nav.html");
});
</script>
<div class="jbo"> </div>
<div id="novid-tc" class="jb t-card">
<div class="blktcbk">
<h1 class="title">No Video</h1>
</div>
</div>
<h1 class="heading">There is nothing to watch.</h1>
<h2 class="txtc">Check the url or use the top bar to choose a page.</h2>
<h2 class="txtc">Or retry <a class="link" href="/watch">here</a>.</h2>
<!-- Footer located in /assets/ftr.html -->
<div id="ftr-placeholder">
</div>
<script>
$(function(){
$("#ftr-placeholder").load("assets/ftr.html");
});
</script>
</body>
</html>