forked from jayfk/statuspage-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
116 lines (71 loc) · 2.79 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="robots" content="index, follow">
<title>Status</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link rel="stylesheet" href="milligram.min.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="https://raw.githubusercontent.com/pyupio/statuspage/master/template/favicon.png">
</head>
<body>
<main class="wrapper">
<nav class="navigation">
<section class="container">
<a class="navigation-title" href="">
<img class="img" src="https://raw.githubusercontent.com/pyupio/statuspage/master/template/logo.png" height="30">
<h1 class="title">Status</h1>
</a>
</section>
</nav>
<section class="container" id="main">
<div class="panel degraded performance">
Degraded performance on CDN.
</div>
<h4>Systems</h4>
<ul class="systems">
<li>
API <span class="status operational">operational</span>
</li>
<li>
CDN <span class="status degraded performance">degraded performance</span>
</li>
<li>
Website <span class="status operational">operational</span>
</li>
</ul>
<h4>Incidents</h4>
<div class="incident">
<span class="date">2016-07-26 09:29:15</span>
<span class="label degraded performance float-right">degraded performance</span>
<span class="label system float-right">CDN</span>
<hr/>
<span class="title">CDN is under heavy load</span>
<p>The CDN is currently under heavy load, we are working on a quick fix by spawning more instances.</p>
</div>
<div class="incident">
<span class="date">2016-03-07 09:33:04</span>
<span class="label operational float-right">resolved</span>
<span class="label system float-right">API</span>
<hr/>
<span class="title">API is down</span>
<p>The API is currently not reachable due to networking issues. We're aware of the problem and are working on it.</p>
<p><em>Update 2016-07-25 10:01:53</em><br/>
Investigating the root cause.
</p>
<p><em>Update 2016-07-26 09:21:17</em><br/>
We were able to identify the issue, working on a fix.
</p>
</div>
</section>
<footer class="footer">
<section class="container">
<hr/>
<p>Status page hosted by GitHub, generated with <a href="https://github.com/pyupio/statuspage">pyupio/statuspage</a></p>
</section>
</footer>
</main>
</body>
</html>