nodeguy/docs/index.html
2019-08-03 21:48:07 +02:00

59 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<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%);
--cover-background-color: white;
}
</style>
</head>
<body>
<div id="app">Loading documentation...</div>
<script>
window.$docsify = {
name: "NodeGui",
repo: "https://github.com/nodegui/nodegui",
coverpage: true,
themeable: {
readyTransition: true, // default
responsiveTables: true // default
},
ga: "UA-145065218-1",
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"></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>