mirror of
https://github.com/apricote/presentations.git
synced 2026-01-13 21:11:02 +00:00
[tf] add terraform presentation
This commit is contained in:
parent
e194238133
commit
c37e4c4095
8 changed files with 648 additions and 82 deletions
75
terraform/index.html
Normal file
75
terraform/index.html
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
<!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>Terraform - Theory and Practice</title>
|
||||
|
||||
<link rel="stylesheet" href="../reveal/css/reveal.css" />
|
||||
<link rel="stylesheet" href="../reveal/css/theme/moon.css" id="theme" />
|
||||
<link rel="stylesheet" href="../reveal/lib/css/atom-one-dark.css" />
|
||||
<link rel="shortcut icon" href="favicon.png" />
|
||||
<style>
|
||||
@import url(https://cdn.rawgit.com/tonsky/FiraCode/1.204/distr/fira_code.css);
|
||||
.reveal code {
|
||||
font-family: "Fira Code", monospace;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="reveal">
|
||||
<div class="slides">
|
||||
<!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->
|
||||
<section
|
||||
data-markdown="terraform.md"
|
||||
data-separator-vertical="^\n--\n$"
|
||||
></section>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src=" ../reveal/lib/js/head.min.js "></script>
|
||||
<script src="../reveal/js/reveal.js "></script>
|
||||
|
||||
<script>
|
||||
Reveal.initialize({
|
||||
controlsTutorial: false,
|
||||
center: false,
|
||||
history: true,
|
||||
|
||||
// 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/highlight/highlight.js",
|
||||
async: true,
|
||||
callback: function() {
|
||||
hljs.initHighlightingOnLoad();
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue