forked from historic-trails/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
directory.html
62 lines (44 loc) · 1.44 KB
/
directory.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
---
---
<!DOCTYPE html>
<html>
{% include header-default.html %}
<body>
{% include nav.html %}
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<script src="{{site.baseurl}}/assets/js/sheetrock.min.js"></script>
<script src="{{site.baseurl}}/assets/js/directory.js"></script>
<div class="main">
<!--Sheetrock expects to be outputting HTML for each row, so here's a place to put it.-->
<div id="sheetrock"></div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<div class="cards"></div>
</div>
</div>
</div>
</div> <!-- /main -->
<script>
$( function() {
getPages(function(pages) {
$.each(pages, createCard);
console.log("done looping through pages.");
//map.addLayer(featureGroup);
}
);
});
</script>
<!-- Menu Toggle Script -->
<script>
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled");
});
</script>
</body>
</html>