-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (55 loc) · 2.1 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
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="static/assets/img/sasjs_square.png" />
<title>SASjs Docs</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"> -->
<!--link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/lib/themes/buble.css" /-->
<link rel="stylesheet" href="static/assets/css/buble.css" />
</head>
<body>
<nav>
<a href="#/user-guide/user-overview">User Guide</a>
<a href="#/developer-guide/developer-overview">Developer Guide</a>
<a href="#/admin-guide/admin-overview">Admin Guide</a>
<!--a href="#" onclick='window.open(window.location.origin + window.location.pathname + "static/sas/");return false;'-->
<a href="#" onclick='window.open("https://core.sasjs.io");return false;'>
SAS Code
</a>
<!--a href="#" onclick='window.open(window.location.origin + window.location.pathname + "static/js/");return false;'-->
<a href="#" onclick='window.open("https://adapter.sasjs.io");return false;'>
JS Code
</a>
</nav>
<div id="app">SASjs Docs are loading...</div>
<script>
window.$docsify = {
repo: 'https://github.com/sasjs/docs',
loadNavbar: false,
loadSidebar: '_sidebar.md',
basePath: window.location.pathname,
logo: 'static/assets/img/sasjs_240x120.png',
name: 'SASjs',
autoHeader: true,
search: 'auto',
relativePath: true,
routermode: 'history'
}
</script>
<script>
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js')
}
</script>
<!-- Docsify v4
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
-->
<script src="static/assets/js/docsify.js"></script>
<script src="static/assets/js/search.min.js"></script>
</body>
</html>