-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
37 lines (36 loc) · 1.52 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
<!DOCTYPE html>
<!-- hey, im a comment called alex, im just kinda chilling here for a bit ya' know, don't mind me! -->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Jexactyl</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="The documentation for installing and building Jexactyl.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<link rel="icon" href="public/images/favicon.ico" type="image/png">
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Jexactyl',
repo: 'jexactyl/documentation',
loadSidebar: true,
coverpage: true,
icon: 'public/images/favicon.ico',
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- Docsify Search -->
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<!-- Bash language support -->
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<!-- MySQL languge support -->
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-sql.min.js"></script>
<!-- NGINX languge support -->
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-nginx.min.js"></script>
<!-- Apache languge support -->
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-apache.min.js"></script>
</body>
</html>