Resources attached to the Road To DevOps tutorial
https://blog.noobtoroot.xyz/road-to-devops/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
3.1 KiB
97 lines
3.1 KiB
2 years ago
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
|
||
|
<title>SII - TP Ansible : les commandes ad-hoc</title>
|
||
|
<link rel="icon" type="image/png" href="revealjs/images/favicon-logo-sii.png" />
|
||
|
|
||
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||
|
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
||
|
<link rel="stylesheet" href="revealjs/css/reset.css">
|
||
|
<link rel="stylesheet" href="revealjs/css/reveal.css">
|
||
|
<link rel="stylesheet" href="revealjs/css/theme/sii.css"> <!-- SII theme -->
|
||
|
|
||
|
<!-- Theme used for syntax highlighting of code -->
|
||
|
<link rel="stylesheet" href="revealjs/lib/css/monokai.css">
|
||
|
|
||
|
<!-- Specific CSS override to reduce font size and align text on the left -->
|
||
|
<style>
|
||
|
.reveal .slides {
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.columns {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.columns pre {
|
||
|
margin-right: 0.5rem;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<!-- Printing and PDF exports -->
|
||
|
<script>
|
||
|
var link = document.createElement( 'link' );
|
||
|
link.rel = 'stylesheet';
|
||
|
link.type = 'text/css';
|
||
|
link.href = window.location.search.match( /print-pdf/gi ) ? 'revealjs/css/print/pdf.css' : 'revealjs/css/print/paper.css';
|
||
|
document.getElementsByTagName( 'head' )[0].appendChild( link );
|
||
|
</script>
|
||
|
|
||
|
<!--[if lt IE 9]>
|
||
|
<script src="lib/js/html5shiv.js"></script>
|
||
|
<![endif]-->
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div class="reveal">
|
||
|
<div class="slides">
|
||
|
<section data-markdown="tp-ansible-les-commandes-ad-hoc.md"
|
||
|
data-separator="^\n\n\n"
|
||
|
data-separator-vertical="^\n\n"
|
||
|
data-separator-notes="^Note:"
|
||
|
data-charset="UTF-8">
|
||
|
</section>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<script src="revealjs/js/reveal.js"></script>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
// More info https://github.com/hakimel/reveal.js#configuration
|
||
|
Reveal.initialize({
|
||
|
controls: true,
|
||
|
progress: true,
|
||
|
center: true,
|
||
|
hash: true,
|
||
|
|
||
|
transition: 'slide', // none/fade/slide/convex/concave/zoom
|
||
|
|
||
|
// More info https://github.com/hakimel/reveal.js#dependencies
|
||
|
dependencies: [
|
||
|
{ src: 'revealjs/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
||
|
{ src: 'revealjs/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
||
|
{ src: 'revealjs/plugin/highlight/highlight.js', async: true },
|
||
|
{ src: 'revealjs/plugin/search/search.js', async: true },
|
||
|
{ src: 'revealjs/plugin/zoom-js/zoom.js', async: true },
|
||
|
{ src: 'revealjs/plugin/notes/notes.js', async: true }
|
||
|
]
|
||
|
});
|
||
|
|
||
|
Reveal.configure({
|
||
|
slideNumber: 'c/t'
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<img class="logo" src="revealjs/images/logo-sii.svg" />
|
||
|
<p class="footer">SII • www.groupe-sii.com • octobre 2018</p>
|
||
|
</body>
|
||
|
</html>
|