-
Notifications
You must be signed in to change notification settings - Fork 0
/
media.html
46 lines (40 loc) · 1.44 KB
/
media.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ninky Nonk | Media</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/media.css">
<meta property="og:title" content="Ninky Nonk | Media">
<meta property="og:type" content="website">
<meta property="og:url" content="https://nonk.uk/media.html">
<meta property="og:image" content="http://cdn.nonk.uk/b61e.png" >
<link type="text/plain" rel="author" href="humans.txt" />
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" sizes="180x180" href="/img/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/icons/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/img/icons/safari-pinned-tab.svg" color="#5bbad5">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/video.js"></script>
</head>
</head>
<body>
<video autoplay muted class="videoBackground">
<source type="video/mp4" id="video">
</video>
<div class="pageWrapper" id="mediaWrapper">
<h1>Media</h1>
<div id="videoGrid">
</div>
</div>
<script>
$(document).ready(() => {
setVideo();
displayVideos();
});
</script>
</body>
</html>