Files
2025-06-23 20:17:28 +02:00

35 lines
1.2 KiB
HTML

<script src="assets/revealjs/custom.js"></script>
<div
style="position: fixed; bottom: 10px; right: 20px; display: flex; justify-content: flex-end; align-items: center; gap: 20px; flex-wrap: wrap;">
<a href="https://www.uni-due.de/">
<img src="assets/ude_signet.svg" alt="Uni Duisburg-Essen Logo" style="height: 4vh; width: auto;">
</a>
<a href="https://www.hemf.wiwi.uni-due.de/en/">
<img src="assets/hecf_signet.svg" alt="HECF Logo" style="height: 4vh; width: auto;">
</a>
</div>
<script>
function move_titleSlide() {
var titleSlide = document.querySelector('section#title-slide');
var placeholder = document.querySelector('section.placeholder-for-titleSlide');
if (titleSlide && placeholder) {
// Transfer visibility attribute from placeholder to title slide
var visibility = placeholder.getAttribute('data-visibility');
if (visibility !== null) {
titleSlide.setAttribute('data-visibility', visibility);
}
// Move the title slide to replace the placeholder
placeholder.parentNode.replaceChild(titleSlide, placeholder);
Reveal.sync();
}
}
window.document.addEventListener("DOMContentLoaded", function (event) {
move_titleSlide();
});
</script>