-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (45 loc) · 1.18 KB
/
index.html
File metadata and controls
49 lines (45 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>
agapanto/under-construction docs
</title>
<link rel="stylesheet" href="https://unpkg.com/docute@4/dist/docute.css">
<style>
/* Import desired font from Google fonts */
@import url('https://fonts.googleapis.com/css?family=Biryani&display=swap');
/* Apply the font to body (to override the default one) */
body {
font-family: 'Biryani', sans-serif;
}
</style>
</head>
<body>
<div id="docute"></div>
<script src="https://unpkg.com/docute@4/dist/docute.js"></script>
<script>
new Docute({
target: '#docute',
layout: 'narrow',
cssVariables: {
headerBackground: '#4a0d56',
headerTextColor: 'white',
navLinkColor: 'white',
navLinkBorderColor: 'white',
},
nav: [
{
title: 'Introduction',
link: '/'
},
{
title: 'Installation',
link: '/docs/installation'
}
]
})
</script>
</body>
</html>