-
Notifications
You must be signed in to change notification settings - Fork 12
/
template.html
123 lines (99 loc) · 3.74 KB
/
template.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8"/>
<title>TITLE</title>
<!-- https://gauger.io/fonticon/ -->
<link rel="icon" href="images/favicons/renovate.ico"/>
<link rel="stylesheet" href="node_modules/reveal.js/dist/reset.css" />
<link rel="stylesheet" href="node_modules/reveal.js/dist/reveal.css" />
<link rel="stylesheet" href="node_modules/reveal.js/dist/theme/black.css" />
<link rel="stylesheet" href="node_modules/highlight.js/styles/rainbow.css" />
<link rel="stylesheet" href="node_modules/@fortawesome/fontawesome-pro/css/all.min.css" />
<link rel="stylesheet" href="themes/theme2022.css" />
<link rel="stylesheet" href="themes/common.css" />
</head>
<body>
<div class="reveal">
<div class="slides">
<section
id="title"
data-separator="^---$"
data-separator-vertical="^--$"
data-background="images/barn-raising-unsplash.jpg"
class="center"
style="padding: 1em 1em 1em 1em; color: white; background: rgba(0, 0, 0, 0.5); width: 60%; margin: auto; text-align: right;">
<h1 style="font-size: 1.5em; color: white;">Title</h1>
<p><img src="LOGO" style="float: left; height: 1em;" /></p>
<h2 style="font-size: 1.2em; text-transform: none; color: white;">Subtitle</h2>
<p><i>Nicholas Dille, Haufe Group</i></p>
<p><a href="LINK">EVENT</a></p>
</section>
<section id="agenda" data-separator="^---$" data-separator-vertical="^--$">
<h2>Agenda</h2>
<i class="fa-duotone fa-4x fa-list-check" style="float: right;"></i>
<ul id="bullets" class="fa-ul" style="line-height: 1.5em; font-size: larger; margin-top: 0.5em;">
</ul>
</section>
<section id="summary" data-separator="^---$" data-separator-vertical="^--$">
<h2>Summary</h2>
<i class="fa-duotone fa-4x fa-lightbulb-on" style="float: right;"></i>
<ul id="bullets" class="fa-ul" style="line-height: 1.5em;">
</ul>
<h3 id="events">Upcoming events</h3>
</section>
</div>
</div>
<script src="node_modules/reveal.js/dist/reveal.js" type="application/javascript"></script>
<script src="node_modules/reveal.js/plugin/markdown/markdown.js" type="application/javascript"></script>
<script src="node_modules/reveal.js/plugin/highlight/highlight.js" type="application/javascript"></script>
<script src="node_modules/reveal.js/plugin/search/search.js" type="application/javascript"></script>
<script src="node_modules/reveal.js/plugin/zoom/zoom.js" type="application/javascript"></script>
<script src="node_modules/reveal.js/plugin/notes/notes.js" type="application/javascript"></script>
<script>
var durationInMinutes = 4 * 60;
Reveal.initialize({
width: 1400,
height: 850,
margin: 0.05,
controlsTutorial: false,
showSlideNumber: false,
hash: true,
history: true,
keyboard: true,
overview: true,
center: false,
touch: false,
shuffle: false,
fragments: true,
fragmentInURL: true,
embedded: false,
help: true,
showNotes: false,
autoPlayMedia: null,
mouseWheel: false,
previewLinks: false,
transition: 'convex',
transitionSpeed: 'default',
backgroundTransition: 'fade',
hideInactiveCursor: true,
hideCursorTime: 3000,
totalTime: durationInMinutes * 60,
allottedTime: durationInMinutes * 60 * 1000,
barColor: 'rgb(200, 0, 0)',
pausedBarColor: 'rgba(200, 0, 0, .6)',
markdown: {
smartypants: true
},
plugins: [
RevealMarkdown,
RevealHighlight,
RevealSearch,
RevealZoom,
RevealNotes
]
});
</script>
</body>
</html>