-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (87 loc) · 5.17 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
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>CPA Puppet Archive</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- Bootstrap –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Mustache -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/2.3.0/mustache.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Custom CSS –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/styles.css">
<!-- Favicon –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="img/favicon.png">
<script id="search-results-template" type="x-tmpl-mustache">
{{#puppets}}
<a href="puppet.html?puppetId={{index}}&class={{collection}}" >
<div class="col-md-2">
<div class="search-result-img-wrapper"><img src={{imageTitle}} class="media-object"></div>
<span class="col-md-12" style= "text-align:center">{{name}}</span>
</div>
</a>
{{/puppets}}
</script>
<script src="./js/index-script.js"></script>
</head>
<body onload="render()">
<!-- HEADER –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div id="header-wrapper" class="container-fluid">
<div class="row">
<div class="col-md-12" id ="header">
<span id="header-title" class="col-md-4" >Center For Puppetry Arts</span>
<span id="header-explore" class="col-md-2">Explore other collections</span>
<a class="header-location col-md-1" id="AFRICAN" href="?srch-class=AFRICAN">African</a>
<a class="header-location col-md-1" id="AMERICAS" href="?srch-class=AMERICAS">Americas</a>
<a class="header-location col-md-1" id="ASIAN" href="?srch-class=ASIAN">Asian</a>
<a class="header-location col-md-1" id="EUROPEAN" href="?srch-class=EUROPEAN">European</a>
<a class="header-location col-md-2" id="MIDEAST" href="?srch-class=MIDEAST">Middle Eastern</a>
</div>
</div>
</div>
<div class="container">
<!-- Body –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div id="search-box col-md-12">
<div class="col-md-1"> </div>
<div class="col-md-10">
<form class="navbar-form" role="search">
<div class="input-group add-on col-md-12">
<input class="form-control" placeholder="Search" name="srch-term" id="srch-term" type="text">
<div class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button>
</div>
</div>
</form>
</div>
</div>
<div>
<div id="search-results" class = "search-page-image-row col-md-12">
<span>No results to show...</span>
</div>
</div>
</div>
<!-- FOOTER –––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div id="footer">
<div class="container">
<div class="row">
<a class="col-md-2" href="#">Center for Puppetry Arts</a>
<a class="col-md-2" href="http://www.gatech.edu/">Georgia Tech</a>
<a class="col-md-2" href="http://dwig.lmc.gatech.edu/ ">DWIG</a>
<a class="col-md-2" href="http://dwig.lmc.gatech.edu/projects/PuppetVR/ ">Project Link</a>
<a class="col-md-4" href="https://www.neh.gov" >Supported by: NEH Research and Development</a>
</div>
</div>
</div>
</body>
</html>