-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (43 loc) · 1.61 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
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/lib/themes/vue.css">
<link rel="stylesheet" href="_assets/main.css">
<title>Server State specs</title>
</head>
<body>
<div id="app"></div>
<script src="https://unpkg.com/docsify-edit-on-github/index.js"></script>
<script>
window.$docsify = {
el: '#app',
loadSidebar: true,
subMaxLevel: 2,
repo: 'https://github.com/server-state/specs',
logo: '/branding/logo/transparent/server-state_128x.png',
themeColor: '#008575',
plantuml: {
skin: 'default',
},
plugins: [
EditOnGithubPlugin.create(
'https://github.com/server-state/specs/blob/master/'
)
],
name: 'Server State Specifications',
auto2top: true,
}
</script>
<script src="https://unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://unpkg.com/docsify/lib/plugins/emoji.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-katex@latest/dist/docsify-katex.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@latest/dist/katex.min.css"/>
<script src="https://unpkg.com/docsify-plugin-flexible-alerts"></script>
<script src="https://unpkg.com/docsify-plantuml/dist/docsify-plantuml.min.js"></script>
<script src="https://unpkg.com/docsify/lib/plugins/search.min.js"></script>
</body>
</html>