-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (77 loc) · 3.15 KB
/
index.html
File metadata and controls
80 lines (77 loc) · 3.15 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="google-site-verification" content="pyiboKa0F2bKVJjc1W7mgi7ux-Z3_75ExVAvjQegqHc">
<meta name="description" content="BoidCMS, by Shuaib Yusuf Shuaib, is a free and open-source flat file CMS for building simple websites and blogs, developed using PHP and uses JSON as a database.">
<meta name="author" content="Shuaib Yusuf Shuaib">
<meta name="theme-color" content="#00bcd4">
<meta property="og:image" content="/_media/thumbnail.png">
<meta property="twitter:image" content="/_media/thumbnail.png">
<link rel="icon" sizes="any" type="image/svg+xml" href="/_media/logo.svg">
<link rel="preload stylesheet" as="style" href="https://fonts.googleapis.com/css?family=Roboto+Mono|Source+Sans+Pro:300,400,600">
<link rel="preload stylesheet" as="style" href="https://cdn.jsdelivr.net/npm/docsify/themes/vue.css">
<link rel="preload" as="script" href="https://cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js">
<link rel="preload" as="script" href="https://cdn.jsdelivr.net/npm/prismjs@1/components/prism-php.min.js">
<link rel="preload" as="script" href="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/ga.min.js">
<link rel="manifest" href="/manifest.json">
<title>Simple, fast, super extensible — BoidCMS</title>
<style type="text/css">
aside.sidebar img {
width: 60px;
height: 60px;
}
nav.app-nav li ul {
min-width: 100px;
}
pre code {
font-family: monospace!important;
}
</style>
<script>
if(typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('/sw.js')
}
/*const canonical = document.createElement("link");
canonical.setAttribute("rel", "canonical");
canonical.setAttribute("href", "https://boidcms.github.io" + location.pathname);
document.head.appendChild(canonical);*/
</script>
</head>
<body>
<div id="app"></div>
<script type="text/javascript">
window.$docsify = {
el: "#app",
name: 'BoidCMS',
logo: '_media/logo.svg',
repo: 'BoidCMS/BoidCMS',
maxLevel: 4,
subMaxLevel: 2,
loadNavBar: true,
loadSidebar: true,
mergeNavbar: true,
coverpage: true,
auto2top: true,
themeColor: '#00bcd4',
notFoundPage: true,
//routerMode: 'history',
formatUpdated: '{YYYY}/{MM}/{DD}',
plugins: [
function(hook, vm) {
hook.beforeEach(function(html) {
var url = 'https://github.com/BoidCMS/boidcms.github.io/blob/master/' + vm.route.file;
var editHtml = '[📝 Help Improve This Page](' + url + ')\n';
return ( editHtml + '\n' + html + '\n----\n' + 'Last modified {docsify-updated}' );
});
}
]
};
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js" data-ga="UA-187607202-5"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-php.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/ga.min.js"></script>
</body>
</html>