-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.61 KB
/
index.html
File metadata and controls
32 lines (30 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel='shortcut icon' type='image/x-icon' href='../favicon.ico' />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JukeBox BETA</title>
<meta name="application-name" content="JukeBox" />
<meta name="apple-mobile-web-app-title" content="JukeBox">
<meta name="description"
content="JukeBox is a mod of Slarmoo's Box that aims to add a crap ton of presets." />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="keywords" content="chiptune, instrumental, music, song, melody, composition, tool, free, online, square wave, NES, NSF, slarmoosbox, ultrabox, beepbox, jummbox, pandorasbox, modbox, sandbox, goldbox, wackybox, todbox, slarmoo, slarmoos" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="theme-color" content="#247d1d" />
<meta name="msapplication-TileColor" content="#247d1d" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<meta name="format-detection" content="telephone=no" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/icon_32.png" />
</head>
<body>
<script>
window.location.href = "../website/" + removeURL(window.location.href);
function removeURL(string) {
return string.replace(/https?:\/\/[\w\.\:\/]*#song=/, "#"); // remove first instance of url
}
</script>
</body>