mirror of
https://github.com/simon987/checkup-statuspage.git
synced 2025-04-04 08:32:59 +00:00
49 lines
1.4 KiB
HTML
49 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Status Page</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script src="js/d3.v3.min.js" charset="utf-8"></script>
|
|
<script src="js/fs.js"></script>
|
|
<script src="js/checkup.js?v=2"></script>
|
|
<script src="js/config.js?v=2"></script>
|
|
<script src="js/statuspage.js?v=1"></script>
|
|
<link rel="icon" href="images/favicon.png" id="favicon">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,700">
|
|
<link rel="stylesheet" href="css/style.css?v=3">
|
|
</head>
|
|
<body>
|
|
<header id="overall-status" class="gray">
|
|
<div id="overall-status-text">
|
|
Loading
|
|
</div>
|
|
<div class="infobar">
|
|
<div class="item">
|
|
<b><span id="info-checkcount">—</span> checks</b> in the last <b><span id="info-timeframe">—</span></b>
|
|
</div>
|
|
<div class="item">
|
|
<b>Last check:</b> <span id="info-lastcheck">—</span>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<div id="chart-grid">
|
|
<!-- Populated by JavaScript -->
|
|
<span id="chart-placeholder"> </span>
|
|
</div>
|
|
<div id="timeline">
|
|
<div id="big-gap">
|
|
There is a big gap of time where no checkups were performed, so some graphs may look distorted.
|
|
</div>
|
|
<div id="bg-line"></div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
Powered by <img src="images/checkup.png" id="checkup-logo">
|
|
</footer>
|
|
</body>
|
|
</html>
|