-
Notifications
You must be signed in to change notification settings - Fork 34
/
index.html
41 lines (40 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Weather Vue</title>
<meta property="og:title" content="Weather Vue">
<meta property="og:description" content="Weather app using Vue.js, Google Maps Geocoding, and Dark Sky.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://weather.kmr.io">
<meta property="og:image" content="/static/images/og.jpg">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="Weather app using Vue.js, Google Maps Geocoding, and Dark Sky.">
<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 -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date()
a = s.createElement(o),
m = s.getElementsByTagName(o)[0]
a.async = 1
a.src = g
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga')
ga('create', 'UA-93904346-2', 'auto')
ga('send', 'pageview')
</script>
</body>
</html>