-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (59 loc) · 2.18 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
<!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 investigating">
Investigating on App, API, Website.
</div>
<h4>Systems</h4>
<ul class="systems">
<li>
App <span class="status investigating">investigating</span>
</li>
<li>
API <span class="status investigating">investigating</span>
</li>
<li>
Website <span class="status investigating">investigating</span>
</li>
</ul>
<h4>Incidents</h4>
<div class="incident">
<span class="date">2016-03-18 13:08:53</span>
<span class="label investigating float-right">investigating</span>
<span class="label system float-right">API</span>
<span class="label system float-right">App</span>
<span class="label system float-right">Website</span>
<hr/>
<span class="title">Testing the Status System</span>
<p>This is a test of the status system.</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>