-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (66 loc) · 2.64 KB
/
index.html
File metadata and controls
81 lines (66 loc) · 2.64 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
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<!-- saved from url=(0048)http://getbootstrap.com/examples/non-responsive/ -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- The above 2 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<title>QuakeMap - Earthquakes data visualizer</title>
<link href="vendors.bundle.css" rel="stylesheet">
<style type="text/css">
#map { height: 500px; }
.show-filter {
width: 100;
padding: 10px;
text-align: right;
}
.show-filter .filter-title {
margin-right: 10px;
}
.metadata-info {
margin-top: 10px;
float: left;
}
</style>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<!-- The mobile navbar-toggle button can be safely removed since you do not need it in a non-responsive implementation -->
<a class="navbar-brand" href="http://getbootstrap.com/examples/non-responsive/#">QuakeMap</a>
</div>
<!-- Note that the .navbar-collapse and .collapse classes have been removed from the #navbar -->
<div id="navbar">
<ul class="nav navbar-nav"></ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="page-header">
<h1>QuakeMap - Earthquakes data visualizer</h1>
<p class="lead">
Using the data provided by <a href="http://earthquake.usgs.gov/earthquakes/">USGS</a>
this app shows the latest earthquakes happened world-wide.
</p>
</div>
<map></map>
<metadata-info class="metadata-info">Last update on 07/11/2016 at 10:00</metadata-info>
<view-selector></view-selector>
<datatable></datatable>
<!-- h3>Non-responsive grid system</h3>
<div class="row">
<div class="col-xs-4">One third</div>
<div class="col-xs-4">One third</div>
<div class="col-xs-4">One third</div>
</div -->
</div> <!-- /container -->
<script src="vendors.bundle.js"></script>
<script src="quakemap.bundle.js"></script>
</body></html>