-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Incidents</title>
<script src=" https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js"
type="text/javascript"></script>
<script>
const config = {
"user": "johannestegner",
"pagesize": 30,
"repo": "jitesoft/jitesoft-cloud-status",
"baseUri": "https://api.github.com/repos"
};
</script>
<link rel="stylesheet" href="https://jitesoft.github.io/incidents/style.min.css">
</head>
<body class="light">
<h1>Incidents</h1>
<button title="Change between light and dark mode" class="mode-switcher">🌙</button>
<span class="power">
Powered by <a href="https://github.com/jitesoft/incidents">@jitesoft/incidents</a>
</span>
<template id="incident">
<div class="incident">
<div class="labels" data-ref="labels"></div>
<div class="status-badge" data-ref="status"></div>
<h3 data-ref="title"></h3>
<pre data-ref="created"></pre>
<pre data-ref="updated"></pre>
<pre data-ref="closed"></pre>
<h4>Summary:</h4>
<p class="incident-content" data-ref="text"></p>
<a href="" data-ref="comments"></a>
</div>
</template>
<div id="app"></div>
</body>
</html>
<script type="text/javascript" src="https://jitesoft.github.io/incidents/script.min.js"></script>