-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (57 loc) · 2.89 KB
/
Copy pathindex.html
File metadata and controls
76 lines (57 loc) · 2.89 KB
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
71
72
73
74
75
76
<html>
<head>
<title>GIF Weather | The weather and gifs based on the current conditions</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" type="text/css" href="normalize.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The weather and gifs based on the current conditions">
<!-- If you wana save it to your homescreen <3 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- App icons -->
<link rel="apple-touch-icon" href="touch-icon-iphone.png">
<link rel="apple-touch-icon" sizes="76x76" href="touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="120x120" href="touch-icon-iphone-retina.png">
<link rel="apple-touch-icon" sizes="152x152" href="touch-icon-ipad-retina.png">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@imgonnarelph">
<meta name="twitter:title" content="GIF Weather" />
<meta name="twitter:description" content="A weather app and gifs based on the current conditions" />
<meta name="twitter:domain" content="GIF Weather">
<meta name="twitter:creator" content="@imgonnarelph">
<!-- Facebook -->
<meta property="og:url" content="https://gifweather.co" />
<meta property="og:type" content="website" />
<meta property="og:title" content="GIF Weather" />
<meta property="og:description" content="A weather app and gifs based on the current conditions" />
<meta property="og:image" content="https://raw.githubusercontent.com/imgonnarelph/gif-weather/gh-pages/gif-weather-facebook.png" />
</head>
<body>
<div class="overlay">
<div class="logo">
<span class="gif">GIF</span>
<h1>Weather</h1>
</div>
<div class="container">
<p class="current-location js-current-location"></p>
<p class="current-temp js-current-temp"></p>
<p class="current-icon js-current-icon"></p>
<div class="js-gif"></div>
</div>
</div>
<footer>
<div class="left">A thing by <a href="http://imgonnarelph.com">imgonnarelph</a></div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="weather.js"></script>
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-19947596-8', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>