-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathindex.html
34 lines (31 loc) · 1001 Bytes
/
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Community Map</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
<script type="text/javascript" src="../js/jquery.min.js" id="/localsite/js/jquery.min.js"></script>
<script type="text/javascript" src="../js/localsite.js?display=map&showheader=true&showfooter=true&showsearch=true&shortheader=true"></script>
<script>
function initialMapPageLoad() {
let hash = getHash();
if (!hash.show && !hash.appview && !hash.geoview) {
// Show topic menu on inital load when no map requested.
loadScript(theroot + 'js/map-filters.js', function(results) {
goHash({"show":"farmfresh","appview":"topics"}); // Allows priorhash to be set for subsequent click of Locations tab.
});
}
}
initialMapPageLoad();
</script>
<style>
#bigThumbPanelHolder {
max-width: 1200px;
margin: 0 auto;
}
</style>
</head>
<body>
</body>
</html>