-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (50 loc) · 1.58 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="robots" content="index, follow">
<title>Lexteam 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="/favicon.ico">
</head>
<body>
<main class="wrapper">
<nav class="navigation">
<section class="container">
<a class="navigation-title" href="">
<img class="img" src="/logo.png" height="30">
<h1 class="title">Status</h1>
</a>
</section>
</nav>
<section class="container" id="main">
<div class="panel operational">
All Systems operational.
</div>
<h4>Systems</h4>
<ul class="systems">
<li>
PastPapersAPI <span class="status operational">operational</span>
</li>
<li>
LexDiscordBot <span class="status operational">operational</span>
</li>
<li>
TheStig <span class="status operational">operational</span>
</li>
</ul>
<h4>Incidents</h4>
<em>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/pyupio/statuspage">pyupio/statuspage</a></p>
</section>
</footer>
</main>
</body>
</html>