forked from SkriptLang/skript-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
54 lines (39 loc) · 2.44 KB
/
template.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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=1.0">
<meta name="description" content="Skript is a Bukkit plugin which allows server admins to customize their server easily, but without the hassle of programming a plugin or asking/paying someone to program a plugin for them. - SkriptLang/Skript">
<link rel="icon" type="image/png" href="./assets/icon.png">
<meta property="og:type" content="website">
<meta property="og:title" content="Skript Documentation">
<meta property="og:site_name" content="Skript Documentation">
<meta property="og:description" content="Skript is a Bukkit plugin which allows server admins to customize their server easily, but without the hassle of programming a plugin or asking/paying someone to program a plugin for them.">
<meta property="og:image" content="https://docs.skriptlang.org/assets/icon.png">
<meta property="og:url" content="https://docs.skriptlang.org/">
<meta name="theme-color" content="#ff9800">
<title>Skript Documentation - ${skript.version}</title>
<link href="css/styles.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" defer></script>
<script src="./js/functions.js"></script>
<script src="./js/main.js" defer></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
</head>
<body>
<div id="docs-body">
<!-- loaded inside body without defer to fix theme flicker -->
<script src="./js/theme-switcher.js"></script>
${include navbar.html}
<nav id="side-nav">
<div id="nav-contents">
${generate ${pagename} desc_nav.html}
</div>
</nav>
${content}
</div>
</body>
</html>