-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (40 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Plerion</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="Plerion SRD" content="Web SRD of Plerion - Space Opera Adventure Game">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="stylesheet" type="text/css" href="css/plerion.css" />
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'PLERION',
repo: 'https://github.com/zeruhur/plerion',
loadSidebar: '_navigation/_sidebar.md',
loadFooter: '_navigation/_footer.md',
subMaxLevel: 2,
auto2top: true,
search: 'auto',
coverpage: {
'/': '_navigation/_coverpage.md'
},
pagination: {
crossChapter: true,
crossChapterText: true
},
onlyCover: true
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- plugins -->
<script src="//cdn.jsdelivr.net/npm/@alertbox/docsify-footer/dist/docsify-footer.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
</body>
</html>