This repository has been archived on 2025-06-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
docker-example/presentation/index.html
T

70 lines
1.6 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>reveal.js</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/white.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css">
<style>
.reveal h2 {
text-transform: unset;
margin-left: -1ch
}
/* .reveal img, .reveal object {
margin: auto;
display: block;
} */
section {
text-align: left;
}
.title-slide {
height: unset;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<section class="title-slide">
<h2>
Simplifiez vos déploiements via la conteneurisation
</h2>
<span>Nathan Tien You</span>
</section>
<section data-markdown="slides.md" data-separator="^\n\n\n" data-separator-vertical="^\n\n"
data-separator-notes="^Note:" data-charset="iso">
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
center: false,
slideNumber: 'c/t',
// Learn about plugins: https://revealjs.com/plugins/
plugins: [RevealMarkdown, RevealHighlight, RevealNotes]
});
</script>
</body>
</html>