-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·50 lines (41 loc) · 1.49 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<title>keen</title>
<meta name="description" content="">
<meta property="og:site_name" content="">
<meta property="og:title" content="">
<meta property="og:description" content="">
<!-- You probably want to swap domain for your own -->
<meta property="og:url" content="https://muffinman.io/keen/">
<meta name="twitter:title" content="">
<meta name="twitter:description" content="">
<!-- Icons -->
<!-- You probably want to swap icons for your own -->
<link rel="icon" href="https://muffinman.io/favicon/red/icon-32.ico" sizes="any" />
<link rel="icon" href="https://muffinman.io/favicon/red/icon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="https://muffinman.io/favicon/red/icon-180.png" />
<link rel="manifest" href="https://muffinman.io/favicon/red/manifest.webmanifest" />
</head>
<body>
<h1>keen</h1>
<p>
Minimal minimal setup for building and releasing npm packages.
</p>
<p>
Check it out on <a href="https://github.com/Stanko/keen/">GitHub</a>
</p>
<img src="./img/keen.png" alt="Commander Keen" />
<script src="./build/docs.js"></script>
<script>
// Live reload
new EventSource("/esbuild").addEventListener("change", (e) => {
location.reload();
});
</script>
</body>
</html>