Praesentationen auf Landesdesign und kleine Aenderungen in Arbeitsblaettern

This commit is contained in:
Dirk Zechnall 2026-01-20 21:44:30 +01:00
parent 6e6c7d45c6
commit 5249a82135
1338 changed files with 150740 additions and 19486 deletions

View file

@ -0,0 +1,15 @@
<div class="custom-footer">
<span >{doctitle} |</span>
<span id="date"></span>
<span >| {author}</span>
</div>
<script>
// JavaScript für das aktuelle Datum im Format TT.MM.YYYY
const today = new Date();
const day = String(today.getDate()).padStart(2, '0');
const month = String(today.getMonth() + 1).padStart(2, '0'); // Monate sind nullbasiert
const year = today.getFullYear();
const formattedDate = `${day}.${month}.${year}`;
document.getElementById('date').textContent = formattedDate;
</script>