forked from tilemill-project/tilemill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.html
46 lines (42 loc) · 1.78 KB
/
default.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
---
---
<!DOCTYPE html >
<html>
<head>
<meta charset='UTF-8'/>
<meta name='robots' content='{% if page.hidden %}noindex{% else %}index{% endif %}'/>
<meta name="viewport" content="width=1000">
{% if page.description %}<meta name='description' content='{{page.description | strip_html}}'/>{% endif %}
<title>{% if page.url == '/' %}{{page.title}} | Fast and beautiful maps{% else %}{{page.title}} | MapBox{% endif %}</title>
<link rel='stylesheet' href='{{site.baseurl}}/assets/pages/site.css' type='text/css'/>
<!--[if IE]><link rel='stylesheet' href='{{site.baseurl}}/assets/pages/site-ie.css' type='text/css'/><![endif]-->
<link rel='shortcut icon' href='{{site.baseurl}}/assets/pages/images/favicon.ico' type='image/x-icon' />
<script src='{{site.baseurl}}/assets/pages/site.js'></script>
</head>
<body class='{{page.class}}'>
<div class='wrapper'>{{content}}</div>
<div class='footer'>© MapBox</div>
<script type='text/javascript'>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-12158002-1']);
_gaq.push(['_setDomainName', '.mapbox.com']);
_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);
})();
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '4e970faef5a1f51def000002');
t.src = '//secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>
</body>
</html>