forked from krestaino/weather-vue
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
44 lines (44 loc) · 2.13 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Pirate Weather</title>
<meta property="og:title" content="Pirate Weather">
<meta property="og:description" content="Weather from the PirateWeather API, a free and compatible Dark Sky alternative.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://weather.pirateweather.net">
<meta property="og:image" content="/static/images/og.jpg">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="Weather from the PirateWeather API, a free and compatible Dark Sky alternative.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/static/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/static/favicon-16x16.png" sizes="16x16">
<link rel="mask-icon" href="/static/safari-pinned-tab.svg" color="#96969f">
<meta name="theme-color" content="#96969f">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,500" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
_paq.push(["setCookieDomain", "*.pirateweather.net"]);
_paq.push(["setDomains", ["*.pirateweather.net"]]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//piwik.alexanderrey.ca/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '5']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//piwik.alexanderrey.ca/matomo.php?idsite=5&rec=1" style="border:0;" alt="" /></p></noscript>
<!-- End Matomo Code -->
</body>
</html>