-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (52 loc) · 2.44 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>BlanketJS</title>
<meta name='description' content='A port of Blanket by rafaelmardojai for the browser using plain JavaScript'>
<meta name='author' content='Leonhard Tissen'>
<meta name='keywords' content='blanket, blanketjs, sounds, ambient, music, sound, noise, generator, browser, javascript, web, app, application, rafaelmardojai, leonhard, tissen'>
<meta name='robots' content='index, follow'>
<meta name='revisit-after' content='1 days'>
<meta name='language' content='English'>
<meta name='theme-color' content='#3584E3'>
<meta property='og:title' content='BlanketJS'>
<meta property='og:description' content='A port of Blanket by rafaelmardojai for the browser using plain JavaScript'>
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@leonhardtissen">
<meta name="twitter:creator" content="@leonhardtissen">
<meta name="twitter:title" content="BlanketJS">
<meta name="twitter:description" content="A port of Blanket by rafaelmardojai for the browser using plain JavaScript">
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='css/base.css'>
<link rel='stylesheet' type='text/css' media='screen' href='css/theme.css'>
<link rel='stylesheet' type='text/css' media='screen' href='css/sound.css'>
<link rel='stylesheet' type='text/css' media='screen' href='css/controlpanel.css'>
<script src='js/Sound.js'></script>
<link rel="icon" type="x-icon" href="assets/logo/favicon.ico">
<link rel="manifest" href="assets/manifest.webmanifest">
</head>
<body>
<main id="soundList"></main>
<footer id="controlPanel">
<button id="theme" class="sidebutton">
<img src="assets/icons/sun.svg" alt="Theme">
<div id="themeList" class="hidden"></div>
</button>
<button id="playback" class="active">
<svg id="play" width="24" height="24" viewBox="0 0 24 24">
<path d="M8 5v14l11-7z" fill="white"></path>
</svg>
<svg id="pause" width="24" height="24" viewBox="0 0 24 24">
<path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z" fill="white"></path>
</svg>
</button>
<a id="source" class="sidebutton" href="https://github.com/LeonhardTissen/BlanketJS" target="_blank">
<img src="assets/icons/github.svg" alt="GitHub">
</a>
</footer>
<script src='js/theme.js'></script>
<script src='js/main.js'></script>
</body>
</html>