presentations/cicd/index.html

76 lines
2.1 KiB
HTML
Raw Permalink Normal View History

2019-03-27 23:18:59 +01:00
<!DOCTYPE html>
2018-07-29 22:20:49 +02:00
<html lang="en">
2019-03-27 23:18:59 +01:00
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
2018-07-29 22:20:49 +02:00
2019-03-27 23:18:59 +01:00
<title>CI/CD at TrackCode</title>
2018-07-29 22:20:49 +02:00
2019-03-27 23:18:59 +01:00
<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>
2018-07-29 22:20:49 +02:00
2019-03-27 23:18:59 +01:00
<body>
<div class="reveal">
<div class="slides">
<!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->
<section
data-markdown="cicd.md"
data-separator-vertical="^\n--\n$"
></section>
</div>
2018-07-29 22:20:49 +02:00
</div>
2019-03-27 23:18:59 +01:00
<script src=" ../reveal/lib/js/head.min.js "></script>
<script src="../reveal/js/reveal.js "></script>
2018-07-29 22:20:49 +02:00
2019-03-27 23:18:59 +01:00
<script>
Reveal.initialize({
controlsTutorial: false,
center: false,
history: true,
2018-07-29 22:20:49 +02:00
2019-03-27 23:18:59 +01:00
// 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>