-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (44 loc) · 1.47 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
<!doctype html>
<html>
<head>
<title>CRDS</title>
<link rel="icon" type="image/png" href="static/favicon.ico?v=1" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116820283-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-116820283-2');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: black;
font-family: "Lucida Console", Courier, monospace;
}
h1, p, a {
color: white;
}
a {
text-decoration: underline;
text-decoration-style: solid;
}
a:hover {
text-decoration-color: blue;
}
.content {
max-width: 50vw;
margin: auto;
}
</style>
</head>
<body>
<div class="content">
<h1>We make tools for extending Kubernetes like...</h1>
<h1><a href="https://doc.crds.dev">Doc</a>: automatic documentation for CRDs</h1>
<h1><a href="https://github.com/crdsdev/kindred">Kindred</a>: a CLI to bootstrap Kubernetes clusters in Kubernetes clusters</h1>
<h1><a href="https://github.com/crdsdev/bifocals">Bifocals</a>: a UI to view all the CRDs in your cluster</h1>
</div>
</body>
</html>