-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (83 loc) · 3.06 KB
/
index.html
File metadata and controls
92 lines (83 loc) · 3.06 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Machine Learning & Artificial Intelligence Workshop</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="A set of hands-on labs for running during AWS ML/AI workshops">
<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="//unpkg.com/docsify/lib/themes/vue.css">
<style>
body .docsify-pagination-container {
border-width: 2px;
border-color: #EB912D;
}
body .pagination-item-label svg {
height: 1.5em;
stroke-linecap: square;
stroke-linejoin: square;
stroke-width: 3px;
}
body .pagination-item-title {
font-size: 1.1em;
}
</style>
</head>
<body>
<div id="app">Loading...</div>
<script>
window.$docsify = {
// the name of the workshop
name: 'Machine Learning & Artificial Intelligence Workshop',
// the base url to edit the current MD file
editInGithubUrl: 'https://github.com/rodzanto/ml-workshop/edit/master/',
// your user/repo in github
repo: 'rodzanto/ml-workshop',
// all other default settings
search: 'auto',
loadSidebar: true,
alias: {
'/.*/_sidebar.md': '/_sidebar.md',
'/.*/_navbar.md': '/_navbar.md'
},
subMaxLevel: 2,
loadNavbar: true,
coverpage: true,
onlyCover: false,
logo: '_media/logo64.png',
homepage: 'init.md',
nameLink: '/',
themeColor: '#EB912D',
auto2top: true,
executeScript: true,
pagination: {
previousText: 'Previous',
nextText: 'Next',
crossChapter: true,
},
footer: {
copy: '<span><a href=https://aws.amazon.com/privacy/?nc1=f_pr>Privacy</a> | <a href=https://aws.amazon.com/terms/?nc1=f_pr>Site Terms</a> | Cookie Preferences</span>',
auth: '| © 2020, Amazon Web Services, Inc. or its affiliates. All rights reserved.',
pre: '<hr/>',
style: 'text-align: right;',
style: 'className',
},
}
// offline mode will be available only if browser allows it
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js')
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/emoji.min.js"></script>
<script src="//unpkg.com/docsify-copy-code"></script>
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script src="//unpkg.com/docsify-plugin-flexible-alerts"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<script src="/plugins/edit-github.js"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="//unpkg.com/docsify-footer-enh/dist/docsify-footer-enh.min.js"></script>
</body>
</html>