-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathupgrade.html
70 lines (59 loc) · 3.07 KB
/
upgrade.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
<!--
Copyright 2015 Google Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
-->
<!DOCTYPE html>
<html lang="en" itemscope="itemscope" itemtype="http://schema.org/WebPage">
<head prefix="og: http://ogp.me/ns# article: http://ogp.me/ns/article#">
<meta charset="utf-8">
<base href="">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>Google Santa Tracker</title>
<meta property="og:image" itemprop="image" name="thumbnail" content="images/apple-touch-icon-144x144-precomposed.png">
<meta name="description" content="Use Google Santa Tracker to follow Santa Claus on Google Maps as he makes his journey around the world.">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:100,300,400,600,700,800|Lobster">
<link rel="stylesheet" href="sass/santatracker.css">
<link rel="stylesheet" href="sass/upgrade.css">
<!-- app manifest-->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes"> <!-- fallback -->
<!-- app status bar themes -->
<meta name="apple-mobile-web-app-status-bar-style" content="#e51c23">
<meta name="theme-color" content="#e51c23">
<meta name="msapplication-TileColor" content="#e51c23">
<!-- icons -->
<link rel="apple-touch-icon-precomposed" href="images/apple-touch-icon-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="images/apple-touch-icon-57x57-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/apple-touch-icon-144x144-precomposed.png">
<link rel="shortcut icon" href="images/favicon.ico">
</head>
<body>
<div id="upgrade">
<div id="upgrade-content">
<p><i18n-msg msgid="upgrade-warning">PLACEHOLDER_i18n</i18n-msg></p>
<div class="redbutton"><a href="#"><i18n-msg msgid="gotovillage">PLACEHOLDER_i18n</i18n-msg></a></div>
</div>
</div>
<script src="//www.google.com/js/gweb/analytics/autotrack.js"></script>
<script>
(function() {
new gweb.analytics.AutoTrack({'profile': 'UA-37048309-1'});
var a = document.querySelector('.redbutton a');
if (a) {
a.href = 'https://santatracker.google.com' +
location.pathname.replace(/[^\/]*$/, '') + '?ignore_browser_check=true';
}
})();
</script>
</body>
</html>