This repository has been archived by the owner on Nov 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
79 lines (71 loc) · 1.96 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
<html>
<head>
<link rel="stylesheet" href="./styles.css" />
<script
defer
src="https://use.fontawesome.com/releases/v5.0.10/js/all.js"
integrity="sha384-slN8GvtUJGnv6ca26v8EzVaR9DC58QEwsIk9q1QXdCU8Yu8ck/tL/5szYlBbqmS+"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- ////////////////////////////// -->
<div id="title">
<div id="log" class="log rounded"></div>
<h1>cityI/O</h1>
<!-- INFO -->
<h2>
Live dashboard for MIT CityScope Project
<br />
<a
href="https://github.com/CityScope/CS_CityIO_Backend"
target="_blank"
>
<i class="fab fa-git-square" aria-hidden="true"></i> Click here for
cityIO backend</a
>
</h2>
<br />
</div>
<!-- ////////////////////////////// -->
<div id="logo">
<a
href="https://www.media.mit.edu/projects/cityscope/overview/"
target="blank"
>
<img
src="./img/logosWhite.png"
alt="MIT Media Lab"
style="width:80px;height:80px;border:0;"
/>
</a>
</div>
<div
id="modal"
class="modal fade bd-example-modal-lg"
tabindex="-1"
role="dialog"
aria-labelledby="myLargeModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-lg">
<button type="button" class="close" data-dismiss="modal">
×
</button>
<div id="contentDiv" class="modal-content">
<div class="container modal-lg">
<div class="row">
<div id="infoDiv" class="tableInfo col-sm-2"></div>
</div>
<div class="row">
<!-- <div id="radarDiv" class="radarDiv"> </div> -->
<div id="threeDiv" class="threeDiv"></div>
</div>
</div>
</div>
</div>
</div>
<div id="map"></div>
<script src="./scripts/main.js"></script>
</body>
</html>