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.
167 lines
5.3 KiB
167 lines
5.3 KiB
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<meta charset="utf-8" /> |
|
<meta |
|
name="viewport" |
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" |
|
/> |
|
<title>Git - La gestion de version décentralisée</title> |
|
<link |
|
rel="icon" |
|
type="image/png" |
|
href="reveal/images/favicon-logo-sii.png" |
|
/> |
|
|
|
<link rel="stylesheet" href="reveal/css/reveal.css" /> |
|
<link rel="stylesheet" href="reveal/css/theme/sii.css" /> |
|
<!-- SII theme --> |
|
<link rel="stylesheet" href="reveal/css/custom.css" /> |
|
<!-- your custom styles --> |
|
|
|
<!-- Theme used for syntax highlighting of code --> |
|
<link rel="stylesheet" href="reveal/highlight/styles/dracula.css" /> |
|
<link rel="stylesheet" href="slides.css" /> |
|
|
|
<!-- 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) |
|
? "revael/css/print/pdf.css" |
|
: "reveal/css/print/paper.css"; |
|
document.getElementsByTagName("head")[0].appendChild(link); |
|
</script> |
|
</head> |
|
|
|
<body> |
|
<div class="reveal"> |
|
<div class="slides"> |
|
<section |
|
data-markdown="slides/01-sommaire.md" |
|
data-separator="^@@@$" |
|
data-separator-vertical="^@@" |
|
data-separator-notes="^Note:" |
|
data-charset="UTF-8" |
|
></section> |
|
|
|
<section |
|
data-markdown="slides/02-contexte.md" |
|
data-separator="^@@@$" |
|
data-separator-vertical="^@@$" |
|
data-separator-notes="^Note:" |
|
data-charset="UTF-8" |
|
></section> |
|
|
|
<section |
|
data-markdown="slides/03-installation.md" |
|
data-separator="^@@@$" |
|
data-separator-vertical="^@@$" |
|
data-separator-notes="^Note:" |
|
data-charset="UTF-8" |
|
></section> |
|
|
|
<section |
|
data-markdown="slides/04-principe.md" |
|
data-separator="^@@@$" |
|
data-separator-vertical="^@@$" |
|
data-separator-notes="^Note:" |
|
data-charset="UTF-8" |
|
></section> |
|
<section |
|
data-markdown="slides/05-quotidien.md" |
|
data-separator="^@@@$" |
|
data-separator-vertical="^@@$" |
|
data-separator-notes="^Note:" |
|
data-charset="UTF-8" |
|
></section> |
|
<section |
|
data-markdown="slides/06-remote.md" |
|
data-separator="^@@@$" |
|
data-separator-vertical="^@@$" |
|
data-separator-notes="^Note:" |
|
data-charset="UTF-8" |
|
></section> |
|
<section |
|
data-markdown="slides/07-branches.md" |
|
data-separator="^@@@$" |
|
data-separator-vertical="^@@$" |
|
data-separator-notes="^Note:" |
|
data-charset="UTF-8" |
|
></section> |
|
<section |
|
data-markdown="slides/08-projet.md" |
|
data-separator="^@@@$" |
|
data-separator-vertical="^@@$" |
|
data-separator-notes="^Note:" |
|
data-charset="UTF-8" |
|
></section> |
|
<section |
|
data-markdown="slides/09-modules.md" |
|
data-separator="^@@@$" |
|
data-separator-vertical="^@@$" |
|
data-separator-notes="^Note:" |
|
data-charset="UTF-8" |
|
></section> |
|
<section |
|
data-markdown="slides/10-bonnes-pratiques.md" |
|
data-separator="^@@@$" |
|
data-separator-vertical="^@@$" |
|
data-separator-notes="^Note:" |
|
data-charset="UTF-8" |
|
></section> |
|
<section |
|
data-markdown="slides/11-conclusion.md" |
|
data-separator="^@@@$" |
|
data-separator-vertical="^@@$" |
|
data-separator-notes="^Note:" |
|
data-charset="UTF-8" |
|
></section> |
|
</div> |
|
</div> |
|
|
|
<script src="reveal/lib/js/head.min.js"></script> |
|
<script src="reveal/js/reveal.js"></script> |
|
|
|
<script> |
|
// More info https://github.com/hakimel/reveal.js#configuration |
|
Reveal.initialize({ |
|
history: true, |
|
|
|
// Transition style |
|
transition: "slide", // none/fade/slide/convex/concave/zoom |
|
center: false, |
|
|
|
// Transition style for full page slide backgrounds |
|
backgroundTransition: "none", // none/fade/slide/convex/concave/zoom |
|
|
|
// More info https://github.com/hakimel/reveal.js#dependencies |
|
dependencies: [ |
|
{ src: "reveal/plugin/markdown/marked.js" }, |
|
{ src: "reveal/plugin/markdown/markdown.js" }, |
|
{ src: "reveal/plugin/notes/notes.js", async: true }, |
|
{ |
|
src: "reveal/highlight/highlight.pack.js", |
|
async: true, |
|
callback: function() { |
|
hljs.initHighlightingOnLoad(); |
|
} |
|
} |
|
] |
|
}); |
|
|
|
// Slide number formatting can be configured using these variables: |
|
// "h.v": horizontal . vertical slide number (default) |
|
// "h/v": horizontal / vertical slide number |
|
// "c": flattened slide number |
|
// "c/t": flattened slide number / total slides |
|
|
|
setTimeout(() => { |
|
Reveal.configure({ slideNumber: "c/t" }); |
|
}, 100); |
|
</script> |
|
<img class="logo" src="reveal/images/logo-sii.svg" /> |
|
<p class="footer">SII • www.groupe-sii.com • Avril 2019</p> |
|
</body> |
|
</html>
|
|
|