forked from statsig-io/statuspage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 1.88 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
<html>
<head>
<title>Green Pants, Black Shirt's uptime center'</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="An emoji of a supervillain serving as a logo for this page. The rendered emoji is from the OpenMoji emoji set."
title="Emoji designed by OpenMoji – the open-source emoji and icon project. License: CC BY-SA 4.0"
width="150px" />
<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>
<a href="https://github.com/statsig-io/statuspage/">Powered by Statsig's Open-Source Status Page</a>.
</footer>
</body>
<script>
genAllReports();
</script>
</html>