You've already forked presentations
mirror of
https://github.com/Dasharo/presentations.git
synced 2026-03-06 14:54:20 -08:00
68cdabda1d
Signed-off-by: Piotr Król <piotr.krol@3mdeb.com>
51 lines
1.2 KiB
HTML
Executable File
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>
|