-
Notifications
You must be signed in to change notification settings - Fork 1
/
yocto-update-strategies.html
executable file
·42 lines (38 loc) · 1.15 KB
/
yocto-update-strategies.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Updates of Yocto-Based Projects: Effective strategies for ongoing maintenance</title>
<meta charset="utf-8">
<script>
classTitle = "Yocto DevDay 2023";
courseAuthor = "Tomasz Żyjewski";
</script>
<link rel="stylesheet" type="text/css" href="../../remark-templates/3mdeb-presentation-template/css/slides.css">
<style>
</style>
</head>
<body>
<script src="../../remark-templates/3mdeb-presentation-template/js/remark.js">
</script>
<script src="../../remark-templates/3mdeb-presentation-template/js/jquery.js">
</script>
<script>
var slideshow = remark.create({
sourceUrl: 'yocto-update-strategies.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 BY | "
+ courseAuthor + "</div>"
);
});
</script>
</body>
</html>