-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
24 lines (23 loc) · 934 Bytes
/
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
<html>
<head>
<title>YouTube Music for Desktop</title>
<link href="node_modules/@mdi/font/css/materialdesignicons.min.css" rel="stylesheet" />
<link href="src/css/window.css" rel="stylesheet" />
</head>
<body>
<div id="title-bar" class="title-bar">
<div>
<span class="window-title">YouTube Music for Desktop</span>
</div>
<div>
<div id="toggle-fullscreen-btn" class="mdi mdi-fullscreen"></div>
<div id="minimize-btn" class="mdi mdi-window-minimize"></div>
<div id="maximize-btn" class="mdi mdi-window-maximize"></div>
<div id="quit-btn" class="mdi mdi-window-close"></div>
</div>
</div>
<webview id="myweb" src="https://music.youtube.com" preload="src/injector.js"></webview>
</body>
</html>
<script src="./src/main-window.js">
</script>