-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (48 loc) · 1.81 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
<!doctype html>
<html>
<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="style.css">
<link rel="icon" href="https://raw.githubusercontent.com/jayfk/statuspage/master/template/favicon.png">
<link rel="prefetch" type="application/l10n" href="translations.ini" />
</head>
<body>
<main class="wrapper">
<nav class="navigation">
<section class="container">
<a class="navigation-title" href="">
<img class="img" src="https://raw.githubusercontent.com/jayfk/statuspage/master/template/logo.png" height="30">
<h1 class="title">Status</h1>
</a>
</section>
</nav>
<section class="container" id="main">
<div class="panel operational" data-l10n-id="systems-operational">
All Systems operational.
</div>
<h4 data-l10n-id="systems">Systems</h4>
<ul class="systems">
<li>
API <span class="status operational" data-l10n-id="operational">operational</span>
</li>
<li>
Website <span class="status operational" data-l10n-id="operational">operational</span>
</li>
</ul>
<h4 data-l10n-id="incidents">Incidents</h4>
<em data-l10n-id="no.incidents">No incidents in the past 90 days.</em>
</section>
<footer class="footer">
<section class="container">
<hr/>
<p>Status page hosted by GitHub, generated with <a href='https://github.com/jayfk/statuspage'>jayfk/statuspage</a></p>
</section>
</footer>
</main>
<script src="statuspage.js" type="text/javascript"></script>
</body>
</html>