forked from mdcfe/netlify-cms-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 850 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Demo wiki</title>
<link rel="stylesheet" href="https://unpkg.com/docute@3/dist/docute.css">
</head>
<body>
<div id="app"></div>
<script src="https://unpkg.com/docute@3/dist/docute.js"></script>
<script>
docute.init({
target: '#docute',
url: './content/wiki/',
home: 'index.md',
icons: [
{
icon: 'github',
label: 'View on GitHub',
link: 'https://github.com/mdcfe/netlify-cms-demo'
},
{
icon: 'edit',
label: 'Edit',
link: 'https://angry-agnesi-6d26d3.netlify.app/cms/'
}
]
})
</script>
</body>
</html>