forked from nodegui/nodegui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (70 loc) · 2.12 KB
/
index.html
File metadata and controls
71 lines (70 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="google-site-verification"
content="7vXKDSJel62EQdT69DCmRXqdh7Kf6GXU_cYms5iYVh8"
/>
<title>
NodeGui - A cross platform library to build performant desktop apps with
Javascript.
</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="description"
content="A cross platform library to build native desktop apps."
/>
<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="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"
/>
<style>
:root {
--heading-margin: 0;
--cover-heading-color: hsl(204, 90%, 45%);
--heading-h1-color: hsl(204, 90%, 45%);
--heading-h2-color: hsl(204, 90%, 45%);
--cover-background-color: white;
}
h1#main-doc {
height: 0;
opacity: 0;
z-index: -2;
}
</style>
</head>
<body>
<div id="app">Loading documentation...</div>
<script>
window.$docsify = {
name: "NodeGui",
repo: "https://github.com/nodegui/nodegui",
coverpage: ["/", "/react/"],
themeable: {
readyTransition: true, // default
responsiveTables: true // default
},
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: ["/", "/faq", "/development/", "/tutorial/about"],
placeholder: "Type to search",
noData: "No Results!"
},
disqus: "nodegui"
};
</script>
<script
src="//unpkg.com/docsify/lib/docsify.min.js"
data-ga="UA-145065218-1"
></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/disqus.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/ga.min.js"></script>
</body>
</html>