-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (70 loc) · 2.1 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Status.js</title>
<link rel="stylesheet" href="/res/fontawesome/css/fontawesome.min.css" />
<link rel="stylesheet" href="/res/fontawesome/css/solid.min.css" />
<link rel="stylesheet" href="/res/css/fonts.css" />
<link rel="stylesheet" href="/res/css/main.css" />
<link rel="stylesheet" href="/res/css/parameters.css" />
<link rel="stylesheet" href="/res/css/theme.css" />
<link rel="stylesheet" href="/res/css/slides.css" />
<link rel="stylesheet" href="./style.css" />
<!-- PWA and Icon Stuff -->
<link rel="manifest" href="/site.webmanifest" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/res/img/icons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/res/img/icons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/res/img/icons/favicon-16x16.png"
/>
<link
rel="mask-icon"
href="/res/img/icons/safari-pinned-tab.svg"
color="#6f069b"
/>
<link rel="shortcut icon" href="/res/img/icons/favicon.ico" />
<meta name="msapplication-TileColor" content="#603cba" />
<meta
name="msapplication-TileImage"
content="/res/img/icons/mstile-144x144.png"
/>
<meta name="theme-color" content="#ffffff" />
<noscript>
<style>
.noScriptNoShow {
display: none;
}
</style>
</noscript>
</head>
<body>
<main>
<div class="slide-half slide1 centerContent" id="slide1">
<h1>Status.js</h1>
<p>Notifications made easy</p>
<button
class="glassy noScriptNoShow"
onclick="window.open('https://github.com/statusjs/statusjs', '_blank')"
>
View on GitHub
</button>
</div>
</main>
</body>
</html>