-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (55 loc) · 2.12 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- TODO ms-verification and google-site-id? -->
<!-- annoying seo stuff -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://docs.mizu.wtf/" />
<meta property="og:site_name" content="Mizu Software" />
<meta property="og:keywords" content="Mizu,Software,Client,Mizu Software,Mizu Client,Documentation,Aspekt,Kawa,Core" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:site" content="@MizuSoftware" />
<meta property="twitter:site:id" content="@MizuSoftware" />
<meta property="twitter:creator" content="@MizuSoftware" />
<meta property="twitter:creator:id" content="@MizuSoftware" />
<meta property="og:locale" content="en-US" />
<meta property="og:title" content="Documentation index" />
<meta property="og:description" content="Because developers always need something to refer to. Here is Mizu Software's official documentation index." />
<meta name="description" content="Because developers always need something to refer to. Here is Mizu Software's official documentation index." />
<!--<meta property="og:image" content="xyz" />
<meta property="twitter:image" content="xyz" />-->
<style>
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap');
* {
font-weight: 400;
}
html, body {
margin: 0;
}
body {
font-family: "Open Sans";
font-size: large;
}
b {
font-weight: 500;
}
p {
font-size: medium;
}
</style>
</head>
<body>
<h1><b>Mizu documentation index (WIP)</b></h1>
<h2>Libraries</h2>
<p>
<a href="/aspekt/">✏️ Aspekt - An open-source fluent Kotlin aspect-oriented Java bytecode modification framework.</a>
<br />
<a href="/kawa/">🚀 Kawa - An open-source, powerful and modular Kotlin-enhanced event bus library for the JVM.</a>
</p>
<h2>Mizu Client</h2>
<p>
<a href="/core/">🧠 Core - Mizu Client's core monolithic repository.</a>
</p>
</body>
</html>