forked from SpongePowered/Configurate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (61 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en-CA">
<head>
<meta charset="utf-8"/>
<title>Configurate Documentation</title>
<style>
body {
font-family: 'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
color: #222222;
}
#container {
width: 40%;
min-width: 600px;
margin-left: auto;
margin-right: auto;
}
header {
color: #2c0549;
padding-bottom: .2em;
border-bottom: #333 .1em solid;
}
a {
text-decoration: none;
color: #2233cc;
}
a:hover {
text-decoration: underline dashed;
}
a:visited {
color: #2233cc;
}
li {
list-style: square;
}
</style>
</head>
<body>
<div id="container">
<header>
<h1>Configurate</h1>
<p>Configurate is a configuration library for JVM applications providing node-based representation of data, with
support for reading from a variety of formats</p>
<nav><a href="https://github.com/SpongePowered/Configurate">GitHub</a> | <a href="https://discord.gg/sponge">Discord</a>
| <a href="https://github.com/SpongePowered/Configurate/discussions">Forum</a> | <a
href="https://github.com/SpongePowered/Configurate/wiki">Manual</a></nav>
</header>
<main>
<p>Javadocs:</p>
<ul>
<% for (version in versions.call()) { %>
<li><a href="${version}/apidocs">${version}</a></li>
<%} %>
</ul>
</main>
<footer>
<small>Last updated ${new Date().toString()} | Configurate is released under the terms of the <a
href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache 2.0</a> license</small>
</footer>
</div>
</body>
</html>