-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
68 lines (67 loc) · 3 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>
<head>
<meta charset="utf-8" />
<title>Nexulien</title>
<style>
/* Bone Structure so the page doesnt flash white */
html {
display: block;
background-color: #222;
color: white;
font-family: sans-serif;
height: 100vh;
}
body {
width: 512px;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 64px;
}
a {
color: #0f9;
}
.logo-container {
display: flex;
flex-direction: row;
justify-content: center;
}
p.warning {
padding: 16px;
background-color: #fa04;
}
</style>
<link rel="stylesheet" href="src/css/style.css">
<link rel="preload" href="assets/logo.svg" as="image" type="image/svg">
<link rel="preload" href="assets/nexulien.svg" as="image" type="image/svg">
</head>
<body>
<span class="logo-container">
<img src="assets/logo.svg" draggable="false" height="192px">
<img src="assets/nexulien.svg" draggable="false">
</span>
<p class="warning"><b>Hey!</b> This site is still undergoing active development.
For now, have this temporary site while we work on the main one.</p>
<h1>Links</h1>
<ul>
<li>GitHub Organization: <a href="https://github.com/Nexulien">https://github.com/Nexulien</a></li>
<li>Mod Repo: <a href="https://github.com/Nexulien/Nexulien">https://github.com/Nexulien/Nexulien</a></li>
<li>Installer Repo: <a href="https://github.com/Nexulien/Installer">https://github.com/Nexulien/Installer</a></li>
<li>Nexop (Vesktop Version): <a href="https://github.com/Nexulien/Nexop">https://github.com/Nexulien/Nexop</a></li>
<li>Nexoid (Mobile, Android) [TEMPORARY]: <a href="https://github.com/JaegerwaldDev/Nexoid">https://github.com/JaegerwaldDev/Nexoid</a></li>
</ul>
<h1>Temporary API+ Documentation</h1>
<h2>Extra PluginDef features</h2>
<p>In a PluginDef, you get the extra parameter <code>nexulien</code>.
This value is used for the filter by "Nexulien-Exclusives" search.
If the plugin added is uniquely made for Nexulien, please set this to <code>true</code>!
Otherwise, you can ignore it (ex.: User Scripts).
</p>
<h2>Extra Slash Command features</h2>
<p>If you're on a dev-build, you can make extra debug commands that aren't visible on standalone.
You can easily make these "dev-commands" by just setting the <code>devOnly</code> parameter in the command to <code>true</code>!
</p>
<sub><p>Site made with ❤ by <a href="https://github.com/JaegerwaldDev">Jae</a></p></sub>
</body>
</html>