-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwatch.html
More file actions
121 lines (117 loc) · 5.83 KB
/
watch.html
File metadata and controls
121 lines (117 loc) · 5.83 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WCXC9D6HV7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WCXC9D6HV7');
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap" rel="stylesheet">
<title>Watch Low Ink</title>
<meta content="Watch Low Ink" property="og:title" />
<meta content="Access the offical livestream or past recordings of Low Ink" property="og:description" />
<meta content="https://lowink.iplabs.ink/watch" property="og:url" />
<meta content="https://lowink.iplabs.ink/assets/logo.png" property="og:image" />
<meta content="#F37002" data-react-helmet="true" name="theme-color" />
<script src="https://kit.fontawesome.com/66a42373e4.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="arrows-bg">
<div class="page-gradient">
<div class="header-wrapper">
<div class="header-logo">
<a href="index.html">
<span class="clickable"></span>
</a>
<img src="assets/logo.png"/>
<div>LOW INK</div>
</div>
<div class="header-nav-mobile-menu" id="header-nav-button"><i class="fa-solid fa-bars"></i></div>
<div class="header-nav" id="header-nav">
<div class="play">
<i class="fa-solid fa-gamepad"></i>
<br>Play Low Ink
<a href="play.html">
<span class="clickable"></span>
</a>
</div>
<div class="selected">
<i class="fa-solid fa-tv"></i>
<br>Watch
<a href="watch.html">
<span class="clickable"></span>
</a>
</div>
<div>
<i class="fa-solid fa-trophy"></i>
<br>Hall Of Fame
<a href="halloffame.html">
<span class="clickable"></span>
</a>
</div>
</div>
<script>
var headerNavButton = document.getElementById("header-nav-button");
var headerNav = document.getElementById("header-nav");
headerNavButton.addEventListener("click", function() {
headerNav.classList.toggle("open");
});
</script>
</div>
<div class="page-title">
<i class="fa-solid fa-tv"></i>Watch Low Ink
</div>
<div class="section-box">
<div class="section-box-title">Watch Live</div>
<div class="section-box-divider"></div>
<div class="section-box-content">
<p>You can watch Low Ink live at the Inkling Performance Labs Twitch. <a href="https://www.twitch.tv/iplsplatoon" style="color: white;">IPLSplatoon on Twitch.</a></p>
<iframe id="twitch-player" src="https://player.twitch.tv/?channel=iplsplatoon&parent=lowink.iplabs.ink" frameborder="0" allowfullscreen="true" scrolling="no"></iframe>
</div>
</div>
<div class="section-box">
<div class="section-box-title">Watch Past Low Ink Events</div>
<div class="section-box-divider"></div>
<div class="section-box-content">
<p>Past Low Ink recordings can be found on the Inkling Performance Labs Youtube channel. Below is a playlist of most of the past Low Ink events.</p>
<iframe id="youtube-player" src="https://www.youtube.com/embed/videoseries?list=PLsJtNA8co7rbmyETHtKbxFFf15xzGIyvY" title="Low Ink VODS" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<script>
const twitchPlayer = document.getElementById('twitch-player');
const youtubePlayer = document.getElementById('youtube-player');
function adjustSize(){
const twitchWidth = twitchPlayer.parentElement.clientWidth;
const twitchHeight = twitchWidth * 9 / 16;
twitchPlayer.style.height = twitchHeight + 'px';
const youtubeWidth = youtubePlayer.parentElement.clientWidth;
const youtubeHeight = youtubeWidth * 9 / 16;
youtubePlayer.style.height = youtubeHeight + 'px';
}
window.onresize = adjustSize;
adjustSize();
</script>
</div>
</div>
<div class="footer-wrapper">
<a href="https://iplabs.ink/">
<img style="height: 50px;"src="svg/ipl-powered.svg"/>
</a>
<p>Low Ink is a part of the Inkling Performance Labs family.
<br>
Designed by the IPL team.
</p>
</div>
</body>
</html>