forked from jeshan/scale-your-cloudformation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (52 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Scale Your CloudFormation</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Success tactics for getting more out of Infrastructure as Code on AWS">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta name="google-site-verification" content="b1iKFT68EANK6xfec8s4McS1PSf2AJMpHC3k1v7-DtU" />
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
<style>
div.pagination-item-title {
font-size: 0;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-yaml.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-json.min.js"></script>
<script src="//unpkg.com/docsify-edit-on-github/index.js"></script>
<script>
let repo = 'jeshan/scale-your-cloudformation';
window.$docsify = {
homepage: 'preface.md',
copyCode: {
buttonText : 'Copy to clipboard',
errorText : 'Error',
successText: 'Copied'
},
coverpage: true,
auto2top: true,
loadSidebar: true,
subMaxLevel: 4,
name: 'Scale Your CloudFormation',
pagination: {
crossChapter: true
},
repo,
plugins: [
EditOnGithubPlugin.create(`https://github.com/${repo}/blob/master/docs/`, undefined, 'Edit on GitHub')
],
}
</script>
<script src="//unpkg.com/docsify-copy-code@2"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script async defer data-domain="scaleyourcloudformation.com" src="https://plausible.io/js/plausible.js"></script>
</body>
</html>