-
Notifications
You must be signed in to change notification settings - Fork 299
/
index.html
55 lines (55 loc) · 1.8 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
<html>
<head>
<title>Status Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="index.css" />
<script src="index.js"></script>
</head>
<body>
<div class="pageContainer">
<div class="headline">
<img src="logo.svg" alt="Logo" width="200px" />
<span> System Status </span>
</div>
<div id="reports" class="reportContainer"></div>
<div id="tooltip" class="tooltip" style="opacity: 0">
<div id="tooltipArrow" class="tooltipArrow"></div>
<div id="tooltipDateTime" class="tooltipDateTime"></div>
<div id="tooltipStatus" class="tooltipStatus"></div>
<hr />
<div id="tooltipDescription" class="tooltipDescription"></div>
</div>
<div id="templates" style="display: none">
<div
id="statusSquareTemplate"
class="statusSquare $color"
data-status="$color"
></div>
<div id="statusLineTemplate" class="statusLine"></div>
<div
id="statusStreamContainerTemplate"
class="statusStreamContainer"
></div>
<div id="statusContainerTemplate" class="statusContainer">
<div class="statusHeader">
<h6 class="statusTitle">$title </h6>
<div class="$color statusHeadline">$status</div>
</div>
<div class="statusSubtitle">
<div class="sectionUrl"><a href="$url">$url</a></div>
<div class="statusUptime">$upTime in the last 30 days</div>
</div>
</div>
</div>
</div>
<footer>
Forked from
<a href="https://github.com/statsig-io/statuspage/"
>Statsig's Open-Source Status Page</a
>.
</footer>
</body>
<script>
genAllReports();
</script>
</html>