-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
97 lines (78 loc) · 3.37 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
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0" />
<title>Data.mil - The Argonne-Meuse Offensive</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.1/dist/leaflet.css" />
<link href='https://api.tiles.mapbox.com/mapbox.js/v1.6.4/mapbox.css' rel='stylesheet' />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link href="css/style.less" rel="stylesheet/less" type="text/css">
<link href='https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.css' rel='stylesheet' />
<script src="js/less.js" ></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<section id="content" class="container-fluid">
<div class="row">
<div id="header" class="col-sm-12">
<a href="http://data.mil" target="_blank"><div class="logo"></div></a>
</div>
</div>
<div class="row">
<div id="info" class="col-sm-4 col-sm-offset-8">
<div class="country"></div>
<div class="controls">
<div class="btn prev">Prev</div>
<div class="btn next">Next</div>
</div>
<div class="content">
</div>
</div>
</div>
</section>
<footer id="controls" class="container-fluid bottom">
<div class="row">
<div class="col-sm-12" id="timeline">"
<div class="ticker">
<div class="year"></div>
</div>
<div class="tick"></div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="text-left legend active" id="1">
<h3 class="inline">9/26</h3><span>The Initial Assault</span>
</div>
<div class="text-left legend" id=10>
<h3 class="inline">10/4</h3><span>The Argonne Forest</span>
</div>
<div class="text-right legend" id=15>
<h3 class="inline">11/11</h3><span>Armistice Day</span>
</div>
</div>
</div>
</footer>
<div id="map">
</div>
<script src="https://unpkg.com/leaflet@1.0.1/dist/leaflet.js"></script>
<script src='https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.js'></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="js/lib/underscore-min.js"></script>
<script src="js/lib/backbone-min.js"></script>
<script src="js/app.js"></script>
<script src="js/model/mapModel.js"></script>
<script src="js/model/mapCollection.js"></script>
<script src="js/view/mapView.js"></script>
<script src="js/view/bombView.js"></script>
<script src="js/view/infoView.js"></script>
<script src="js/view/timelineView.js"></script>
</body>
</html>