forked from BansPage/banspage.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (52 loc) · 2.03 KB
/
Copy pathindex.html
File metadata and controls
69 lines (52 loc) · 2.03 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
<!doctype html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129285594-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-129285594-1');
</script>
<title>Bans.Page</title>
<meta name="description" content="Ban stages for Super Smash Bros!" />
<meta name="viewport" content="width=device-width" />
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="./css/style.css" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<script src="./js/constants.js"></script>
<script src="./js/home.js"></script>
</head>
<body>
<h1>SSBU Stage Striking</h1>
<p>
Click on a stage to strike it. Click a struck stage to unstrike it. Refresh page to reset. (These are day 1 lists, which are subject to change as community decides on legal stages.)
</p>
<noscript>
<p>This site uses basic Javascript to function - no big external libraries! Please enable Javascript to use the site.</p>
</noscript>
<!-- Stage Buckets (populated by JS) -->
<section id="buckets"></section>
<p><img src="dotted.jpg" />¬ = Hazardless</p>
<br /><br /><hr />
<button class="small" onclick="gotoCreate()">Edit Stagelist</button>
<p>
Community Created Stagelists:<br />
<ul id="precreated"></ul>
</p>
<h2><a href="./create/index.html">Create your own stagelist!</a></h2>
<input class="hidden" type="text" id="stageCode" />
<footer>
<p>Created by <a href="https://twitter.com/WaveParadigm">WaveParadigm</a> and <a href="https://twitter.com/VGInvis">Invis</a></p>
<p><a href="./index.html">Home</a> | <a href="./create/index.html">Stagelist Creator</a> | <a href="./about.html">About</a></p>
<p>(c) 2018</p>
</footer>
</body>
</html>
<script>
//after DOM load
loadFromURL();
populateCommunityList();
</script>