-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
64 lines (58 loc) · 2.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pokemon GO Server Status</title>
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/main.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Is Pokemon GO responding slowly? Check the server status here!">
<meta charset="utf-8">
<meta name="keywords" content="pokemongo,pokemon,server,status">
<link rel="author" href="https://plus.google.com/107305154836787977753" />
<meta property="og:url" content="http://brunnerliv.io/pokemongostatus">
<meta property="og:image" content="http://brunnerliv.io/pokemongostatus/img/pokemongo.jpeg">
<meta property="og:description" content="Is Pokemon GO responding slowly? Check the server status here!">
<meta property="og:title" content="Pokemon GO Server Status">
<meta itemprop="name" content="Pokemon GO Server Status">
<meta itemprop="description" content="Is Pokemon GO responding slowly? Check the server status here!">
<meta itemprop="image" content="Is Pokemon GO responding slowly? Check the server status here!">
<meta name="twitter:card" content="summary">
<meta name="twitter:url" content="http://brunnerliv.io/pokemongostatus">
<meta name="twitter:title" content="Pokemon GO Server Status">
<meta name="twitter:description" content="Is Pokemon GO responding slowly? Check the server status here!">
<meta name="twitter:image" content="http://brunnerliv.io/pokemongostatus/img/pokemongo.jpeg">
<meta name="theme-color" content="#28b29b">
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon.png">
<!-- Google Analytics -->
<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-80639864-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body onload="pokemonGOStatus.init()">
<a href="https://github.com/BrunnerLivio/PokemonGOStatus" target="_blank" class="github-button">
<div class="github-icon"></div>
</a>
<div class="container">
<h1>Pokemon GO Server Status</h1>
<div class="loader active" id="loader">
<svg class="circular" viewBox="25 25 50 50">
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10" />
</svg>
</div>
<div id="status" class="status"></div>
</div>
<footer>
<div>
<span>Created by <a href="http://brunnerliv.io" target="_blank">Livio Brunner</a></span>
</div>
<div id="intervalStatus"></div>
</footer>
</body>
</html>