-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (54 loc) · 1.96 KB
/
Copy pathindex.html
File metadata and controls
55 lines (54 loc) · 1.96 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BareCMS Documentation</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="A lightweight, open-source headless CMS designed with bare minimalism in mind">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="icon" href="assets/logo.svg" type="image/svg+xml">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'BareCMS',
repo: 'https://github.com/snowztech/barecms',
homepage: 'index.md',
loadSidebar: true,
loadFooter: true,
coverpage: true,
subMaxLevel: 2,
auto2top: true,
themeColor: '#000000',
search: {
placeholder: 'Search documentation...',
noData: 'No results found.',
depth: 3
},
routerMode: 'history',
copyCode: {
buttonText: 'Copy',
errorText: 'Error',
successText: 'Copied'
},
nextLink: true,
prevLink: true,
pagination: {
previousText: 'Previous',
nextText: 'Next',
crossChapter: true,
}
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code@2"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-go.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-json.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-javascript.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-yaml.min.js"></script>
</body>
</html>