-
Notifications
You must be signed in to change notification settings - Fork 3
/
competitions.html
92 lines (79 loc) · 4.02 KB
/
competitions.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Competitive Cyber Clubs Map</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="public/css/leaflet-sidebar.css" />
<link rel="stylesheet" href="public/css/misc.css" />
<script src="public/js/leaflet-src.js"></script>
<!-- Our data sources -->
<script src="public/json/clubs.json"></script>
<script src="public/json/geo.json"></script>
<style>
body {
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
font: 10pt "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.lorem {
font-style: italic;
color: #AAA;
}
</style>
</head>
<body>
<div id="sidebar" class="sidebar collapsed">
<!-- Nav tabs -->
<div class="sidebar-tabs">
<ul role="tablist">
<li><a href="#home" role="tab"><i class="fa fa-bars"></i></a></li>
<li><a href="#profile" role="tab"><i class="fa fa-user"></i></a></li>
<li class="disabled"><a href="#messages" role="tab"><i class="fa fa-envelope"></i></a></li>
<li><a href="https://github.com/Turbo87/sidebar-v2" role="tab" target="_blank"><i class="fa fa-github"></i></a></li>
</ul>
<ul role="tablist">
<li><a href="#settings" role="tab"><i class="fa fa-gear"></i></a></li>
</ul>
</div>
<!-- Tab panes -->
<div class="sidebar-content">
<div class="sidebar-pane" id="home">
<h1 class="sidebar-header">
Competitive Cyber Clubs Map
<span class="sidebar-close"><i class="fa fa-caret-left"></i></span>
</h1>
<div class="legend">
<p>A map of all the cyber competitions in the United States</p>
</div>
<h3>Legend:</h3>
<label class="switch"><input type="checkbox" id="rvb" checked><span class="slider round"></span></label> <img src="public/images/icons/redvblue.png"> Red vs Blue team<br />
<label class="switch"><input type="checkbox" id="ctf" checked><span class="slider round"></span></label> <img src="public/images/icons/ctf32.png"> Capture the Flag<br />
<br />
<strong>What is a Red vs Blue team?</strong>
<p class="lorem">Description </p>
</div>
<div class="sidebar-pane" id="profile">
<h1 class="sidebar-header">Profile<span class="sidebar-close"><i class="fa fa-caret-left"></i></span></h1>
</div>
<div class="sidebar-pane" id="messages">
<h1 class="sidebar-header">Messages<span class="sidebar-close"><i class="fa fa-caret-left"></i></span></h1>
</div>
<div class="sidebar-pane" id="settings">
<h1 class="sidebar-header">Settings<span class="sidebar-close"><i class="fa fa-caret-left"></i></span></h1>
</div>
</div>
</div>
<div id="map" class="sidebar-map"></div>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="public/js/leaflet-sidebar.js"></script>
<script type="text/javascript" src="/public/js/loop.js"></script>
<a href="https://github.com/Turbo87/sidebar-v2/"><img style="position: fixed; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<div> undefined <a href="https://icon54.com/" title="Pixel perfect"> Pixel perfect </a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com'</a></div>
</body>
</html>