generated from nerun/RPG_SRD_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (105 loc) · 4.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="pt-br">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap">
<!-- Fontawesome -->
<link rel="stylesheet" href="//unpkg.com/@fortawesome/fontawesome-free/css/fontawesome.css" />
<link rel="stylesheet" href="//unpkg.com/@fortawesome/fontawesome-free/css/brands.css" />
<link rel="stylesheet" href="//unpkg.com/@fortawesome/fontawesome-free/css/regular.css" />
<link rel="stylesheet" href="//unpkg.com/@fortawesome/fontawesome-free/css/solid.css" />
<!-- Material Icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css"
title="docsify-darklight-theme"
type="text/css"
/>
<link rel="stylesheet" href="./_assets/css/style.css" type="text/css" />
<!-- Collapsable Menu: arrow style -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/sidebar.min.css" />
<!-- Collapsable Menu: folder style
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/sidebar-folder.min.css" />
-->
<!-- docsify-navbar-fixed -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/gh/LIGMATV/docsify-navbar-fixed/navbar-fixed.css">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no, viewport-fit=cover">
<meta name="rating" content="12 years" />
<title>Cepheus Engine</title>
<meta name="description" content="Documento de Referência do Sistema Cepheus Engine.">
<link rel="icon" href="_media/favicon.ico">
</head>
<body>
<div id="app"></div>
<script>
// Docsify Configuration (see https://docsify.js.org/#/configuration)
window.$docsify = {
name: 'Menu',
logo: '/_media/ce-compatible.png width=120px',
// Configure the repository url, or a string of username/repo,
// to add the GitHub Corner widget in the top right corner of the site.
//repo: 'nerun/cepheus',
// load from _navbar.md
loadNavbar: true,
themeColor: '#3F51B5',
// Sidebar Configuration
auto2top: true,
loadSidebar: true,
maxLevel: 3,
// Set subMaxLevel to 0 to remove automatic display of page table of
// contents (TOC) in Sidebar
subMaxLevel: 3,
// set sidebar display level for collapsable menu
sidebarDisplayLevel: 0,
// Search Plugin Configuration
search: {
placeholder: 'Digite para procurar',
noData: 'Nenhuma equivalência encontrada.',
// Headline depth, 1 - 6
depth: 3,
},
// Latex
latex: {
inlineMath : [['$', '$'], ['\\(', '\\)']],
displayMath : [['$$', '$$']],
},
//Flexible Alerts
'flexible-alerts': {
note: {
label: "Nota"
},
tip: {
label: "Dica"
},
warning: {
label: "Aviso"
},
attention: {
label: "Atenção"
}
}
};
</script>
<!-- Theme -->
<script src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js"></script>
<!-- Required -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/emoji.min.js"></script>
<script src="https://unpkg.com/docsify-plugin-flexible-alerts"></script>
<!-- Fontawesome -->
<script src="//unpkg.com/docsify-fontawesome/dist/docsify-fontawesome.min.js"></script>
<!-- Recommended -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/zoom-image.min.js"></script>
<!-- Recommended -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<!-- Footnotes -->
<script src="//cdn.jsdelivr.net/npm/@sy-records/docsify-footnotes/lib/index.min.js"></script>
<!-- Collapsable Menu -->
<script src="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/docsify-sidebar-collapse.min.js"></script>
<!-- LaTeX & MathJax -->
<script src="//cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-latex@0"></script>
</body>
</html>