-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
115 lines (107 loc) · 3.92 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>OneOps Training</title>
<link href="./reveal/css/reveal.css" rel="stylesheet" />
<link href="./reveal/lib/css/zenburn.css" rel="stylesheet" />
<link href="./reveal/css/theme/walmart-labs.css" rel="stylesheet" />
<link href="./reveal/css/theme/walmart-labs-center.css" rel="stylesheet" />
<script>
document.write('<link rel="stylesheet" href="./reveal/css/print/'
+ (window.location.search.match(/print-pdf/gi) ? 'pdf' : 'paper')
+ '.css" type="text/css" media="print">');
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-background="wmt/img/dark-blue-bg.png"
data-background-repeat="repeat"
data-background-size="2px"
class="title-slide">
<h1>OneOps Training</h1>
</section>
<section data-background="./images/logos/oneops.png"
data-background-size="250px"
data-background-position="top 10px right 10px"
>
<h2>OneOps Training</h2>
<ul>
<li><a href="./training-videos.html">Training Video Slides</a> used for <a href="https://www.youtube.com/channel/UCajgVCGqZ2M9RhULR8Q5Iww">our YouTube channel</a></li>
<li><a href="./user-1-beginner.html">User Training: Level 1 - Beginner</a></li>
<li><a href="./user-2-advanced.html">User Training: Level 2 - Advanced</a></li>
<li><a href="./user-3-advanced-examples.html">User Training: Level 3 - Advanced Examples</a></li>
</ul>
<p>Source can be found on <a href="https://github.com/oneops/oneops-training">GitHub.</a>
</section>
<section data-background="wmt/img/dark-blue-bg.png"
data-background-repeat="repeat"
data-background-size="2px"
class="slide-final">
<img src="wmt/img/bolt-wht.png" class="img-responsive"/>
</section>
</div>
<div id="hidden" style="display:none;">
<div id="header">
<div id="footer">
<img id="footer-logo" align="right" src="wmt/img/walmart-labs-logo-wht.png"/>
</div>
</div>
</div><!-- END FOOTER -->
</div>
<script src="./reveal/lib/js/head.min.js"></script>
<script src="./reveal/js/reveal.js"></script>
<script>
// See https://github.com/hakimel/reveal.js#configuration for a full list of configuration options
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
slideNumber: true,
width: '100%',
height: '100%',
// 720p as used for videos
//width : 1280,
//height : 720,
margin: 0.1,
minScale: 0.2,
maxScale: 1.5,
// Optional libraries used to extend on reveal.js
dependencies : [
{ src : './reveal/lib/js/classList.js',
condition : function() { return !document.body.classList; }
},
{ src : './reveal/plugin/markdown/marked.js',
condition : function() { return !!document.querySelector('[data-markdown]'); }
},
{ src : './reveal/plugin/markdown/markdown.js',
condition : function() { return !!document.querySelector('[data-markdown]'); }
},
{ src : './reveal/plugin/zoom-js/zoom.js',
async : true,
condition : function() { return !!document.body.classList; }
},
{ src : './reveal/plugin/notes/notes.js',
async : true,
condition : function() { return !!document.body.classList; }
}
]
});
</script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script type="text/javascript">
// 3. On Reveal.js ready event, copy header/footer <div> into each `.slide-background` <div>
var header = $('#header').html();
if ( window.location.search.match( /print-pdf/gi ) ) {
Reveal.addEventListener( 'ready', function( event ) {
$('.slide-background').append(header);
});
}
else {
$('div.reveal').append(header);
}
</script>
</body>
</html>