-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
43 lines (43 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/>
<title>Rename CLI</title>
<!-- Stylesheet -->
<link
rel="stylesheet"
href="https://unpkg.com/@egoist/docup@1/dist/docup.min.css"
/>
</head>
<style>
:root {
--navbar-bg: #051622;
--navlink-hover-bg: #0d3959;
--sidebar-bg: #1ba098;
--navbar-fg: #deb992;
--sidebar-text-fg: #eee;
--sidebar-menu-item-active-fg: #fff;
--content-link-fg: #1ba098;
--code-span-bg: #f6fbfe;
--code-block-bg: #030e16;
}
</style>
<body>
<!-- Script -->
<script src="https://unpkg.com/@egoist/docup@1/dist/docup.min.js"></script>
<!-- Start app -->
<script>
docup.init({
base: '/node-rename-cli',
navLinks: [
{ text: 'GitHub', link: 'https://github.com/jhotmann/node-rename-cli' }
]
})
</script>
</body>
</html>