forked from EmoryDHLab/peabody-bem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPeabody_view.html
87 lines (70 loc) · 2.9 KB
/
Peabody_view.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
<!-- the HTML file for the view mode: interactive but not customizable. no timeline -->
<!DOCTYPE html>
<html>
<!-- <html class = "content">
--><!--from tinymce, changes style of whole page-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--css-->
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,900,700,200' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style_navbar.css">
<link rel="stylesheet" href="css/style_view.css">
<!--js-->
<script src = "js/jquery-1.11.3.min.js"></script>
<script src = "js/d3.min.js"></script>
<script src="js/script_view.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src = "js/respond.min.js"></script>
<link rel="icon" href="../../favicon.ico">
<title>Peabody</title>
</head>
<body>
<!-- Static navbar -->
<nav class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"> <!-- <img src="img/logo-12.png" width="2%"> </img> -->Peabody</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="Peabody_view.html">View <!-- <span class="sr-only">(current)</span> --></a></li>
<li><a href="Peabody_build.html">Build</a></li>
<li><a href="Peabody_compare.html">Compare</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="col-lg-7 myoffset"> <!--column to hold chart-->
<div id="gridContainer" class="row col-md-12">
<h2 id="chartTitle">Chronological History of the 16th Century</h2>
</div>
</div> <!--close column holding chart-->
<div class="col-lg-4">
<div id="colorPalette">
</div>
<!-- container for event key grid-->
<div class="col-md-3 bottomalign" id="eventKeyGrid">
</div>
<!--container for dynamic javascript text for event key grid-->
<div class="col-md-9 bottomalign">
<p id="eventKeyID">0. Key for Event ID</p>
</div>
<!--container for dynamic event list-->
<div id="eventList" >
<h2>List of Events </h2>
<ul id="sampleList"></ul>
</div><!--close event list-->
</div> <!--close col for events-->
<!-- </div> -->
</body>
</html>