-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
93 lines (82 loc) · 3.72 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
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
93
<!--Notes: things to change before migrating to main site:
Relative links: csv file in site.js, stylesheet llinks
Activation Log link
links to googlefonts
world-map.json location
remove h2 in css file
move title (sims activation) into container
-->
<!DOCTYPE html>
<html lang="EN">
<head>
<meta charset="utf-8">
<title>Sims activations</title>
<!--link to icon next to title-->
<link rel="shortcut icon" href="">
<link rel="stylesheet" type="text/css" href="libraries/dc.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" title="priority stylesheet" href="site.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300|Oxygen" />
</head>
<!--BEGIN BODY-->
<body>
<!-- HEADER -->
<div id="menu">
<a href="http://zibethin.github.io/">
<div class="menu-item">Homepage</div>
</a>
<a href="https://github.com/Zibethin">
<div class="menu-item">About</div>
</a>
<a href="https://github.com/Zibethin">
<div class="menu-item">GitHub</div>
</a>
</div>
<h2>SIMS Activations</h2>
<p>
See dashboard in <a href="https://zibethin.github.io/sims-website/">context</a>.
View code on <a href="https://github.com/Zibethin">Github</a>.
</p>
<p>Click on the Map to filter data. (Note: it takes a few seconds to retrieve the data from Google).</p>
<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1 hide-overflow hidden-xs">
<div id="map">
<p id="reset-line" class="col-sm-12">
<button class="btn btn-md" style="visibility:hidden;">Error</button>
<button id="reset-map" class="btn btn-danger btn-md reset" style="display: none;">Reset map and table filters</button>
<span class="reset" style="display: none;"> | Current filter: <span class="filter"></span></span>
</p>
</div>
</div>
</div>
</div>
<!--Table------------>
<div class="container">
<div class="row">
<div class="col-sm-10 visible-xs">
<p>SIMS has participated in various activations around the world since 2011. An interactive map of all activations is available when viewing the website on a larger screen.</p>
<p>In the meantime you can download a table for all activations below.</p>
</div>
<p><strong>Summary of Activations</strong></p>
<p>
<a id="download-data" class="btn btn-danger btn-md btn-dark" href="https://docs.google.com/spreadsheets/d/12LL51LLpzADi0ksaLL5OHH2r_YcYLwrKE3r-UFDP7WM/pub?output=csv">
<i class="fa fa-download" aria-hidden="true"></i> Download csv
</a>
</p>
<div class="col-sm-10 col-sm-offset-1 hidden-xs">
<div id="table" class="table table-hover"></div>
</div>
</div>
</div>
<!--Javascript files-->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="libraries/tabletop.js"></script>
<script type="text/javascript" src="libraries/d3.js"></script>
<script type="text/javascript" src="libraries/crossfilter.js"></script>
<script type="text/javascript" src="libraries/dc.js"></script>
<script type="text/javascript" src="site.js"></script>
</body>
</html>