-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (26 loc) · 1.18 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
<html>
<head>
<title>Chiefs On The Chief!</title>
<link rel="shortcut icon" href="http://chiefs.russellgordon.org/favicon.ico">
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="http://chiefs.russellgordon.org/s/js/chief-spots.js"></script>
<script type="text/javascript" src="http://chiefs.russellgordon.org/s/js/gmap-chiefs.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1323081-15']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body style="margin: 0; padding: 0" onload="initialize()">
<div style="height: 100%; width: 100%; display:table;">
<div style="width: 100%; height: 100%;">
<div id="map" style="width: 100%; height: 100%;"></div>
</div>
</div>
</body>
</html>