Files
presentations/dasharo_roadmap.html
Piotr Król 68cdabda1d dasharo_roadmap: update for dug6
Signed-off-by: Piotr Król <piotr.krol@3mdeb.com>
2024-06-12 01:17:40 +02:00

51 lines
1.2 KiB
HTML
Executable File

<!--
SPDX-FileCopyrightText: 2024 3mdeb <contact@3mdeb.com>
SPDX-License-Identifier: Apache-2.0
-->
<!doctype html>
<html>
<head>
<title>Dasharo Roadmap</title>
<meta charset="utf-8" />
<script>
classTitle = "Dasharo User Group #6";
courseAuthor = "Piotr Król";
</script>
<link
rel="stylesheet"
type="text/css"
href="/remark-templates/dasharo-presentation-template/css/slides.css"
/>
<style></style>
</head>
<body>
<script src="/remark-templates/dasharo-presentation-template/js/remark.js"></script>
<script src="/remark-templates/dasharo-presentation-template/js/jquery.js"></script>
<script>
var slideshow = remark.create({
sourceUrl: "dasharo_roadmap.md",
countIncrementalSlides: false,
});
slideshow.on("afterShowSlide", function (slide) {
if ($(".bottomBar")[0]) {
$(".bottomBar").remove();
} else {
// Do something if class does not exist
}
$(".remark-slide-content").append(
"<div class='bottomBar'>" +
classTitle +
" <br> CC-SA-4.0 | " +
courseAuthor +
"</div>",
);
});
</script>
</body>
</html>