-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
55 lines (52 loc) · 1.93 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
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>oSPARC API clients</title>
<link rel="icon" href="_media/favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="A Python client SDK for oSPARC API">
<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="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css" title="vue" disabled>
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/lib/themes/dark.css" title="dark" disabled>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
</head>
<body>
<div id="app">Loading ...</div>
<script>
window.$docsify = {
loadNavbar: 'docs/navbar.md',
loadSidebar: false,
basePath: '.',
alias: {
'/': 'docs/doc_entrypoint.md',
},
maxLevel: 2,
name: 'oSPARC API clients',
repo: 'https://github.com/ITISFoundation/osparc-simcore-clients.git',
relativePath: false,
// copy-code
copyCode: {
buttonText: 'Copy to clipboard',
},
// search
search: 'auto', // default
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: 'auto',
placeholder: 'Type to search',
noData: 'No Results!',
// Headline depth, 1 - 6
depth: 6,
hideOtherSidebarContent: false, // whether or not to hide other sidebar content
}
}
</script>
<script src="docs/lib/docsify.min.js"></script>
<script src="docs/lib/plugins/search.min.js"></script>
<script src="docs/lib/plugins/docsify-copy-code.min.js"></script>
<script src="docs/lib/plugins/prism-python.min.js"></script>
<script src="docs/lib/plugins/prism-bash.min.js"></script>
</body>
</html>