-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (30 loc) · 1.37 KB
/
index.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
<!doctype html>
<html>
<head>
<title>YTSync</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="css/style.css">
<script src="/bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="/src/YTSync-app/YTSync-app.html">
<link rel="shortcut icon" type="image/x-icon" href="/img/favicon.png">
</head>
<body>
<ytsync-app id="app"></ytsync-app>
<footer>
<div id="footer-container">
<p id="footer-content">
Brought to you by <a href="https://nethruster.com" target="_blank">Nethruster</a> ‐ <script>document.write(new Date().getFullYear())</script> ‐ YoutuSync is not asociated in any way with YouTube ‐ This is an <a href="https://github.com/nethruster/ytsync" target="_blank">open source</a> project. ‐ <a href="mailto:[email protected]">Contact</a>
</p>
</div>
</footer>
<script>
window.addEventListener('resize', function(e) {
if(window.innerWidth <= 780) {
document.getElementById('app').$$("#control-menu").pauseAll();
}
});
</script>
</body>
</html>