-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
79 lines (62 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Peerbit</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="A P2P framework">
<link rel="icon" href="media/favicon.ico" />
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no, viewport-fit=cover">
<link rel="stylesheet" media="(prefers-color-scheme: dark)"
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<link rel="stylesheet" media="(prefers-color-scheme: light)"
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Peerbit',
repo: 'https://github.com/dao-xyz/peerbit',
routerMode: 'hash',
coverpage: 'coverpage.md',
/* onlyCover: true, */
auto2top: true,
executeScript: true,
loadSidebar: true,
loadNavbar: true,
mergeNavbar: true,
relativePath: true,
maxLevel: 5,
subMaxLevel: 3,
search: {
paths: 'auto'
}
}
</script>
<!-- Required -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<!-- Recommended -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/plugins/search.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/plugins/zoom-image.min.js"></script>
<!-- Pages -->
<script src="//cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
<!-- Highlighting -->
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-typescript.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code/dist/docsify-copy-code.min.js"></script>
</body>
<style>
html {
/* Without this, code comments look dull */
--code-theme-comment: #00b5ff !important;
/* Backround colors */
--mono-hue: 251 !important;
--mono-saturation: 5% !important;
--cover-background-image: radial-gradient(ellipse at center left, var(--mono-tint3), transparent) !important;
}
</style>
</html>