Added Images, fonts, vagttelefon and menuplan

This commit is contained in:
Frederikmillingpytlick
2020-06-11 14:52:15 +02:00
parent 9c6d8c04cd
commit a341e61bad
32 changed files with 699 additions and 25 deletions
+15
View File
@@ -0,0 +1,15 @@
document.addEventListener("DOMContentLoaded", function(){
// Handler when the DOM is fully loaded
start();
});
function start() {
updateWeek();
}
function updateWeek() {
var elm = document.getElementById('week');
var date = new Date();
elm.innerHTML = "Uge " + date.getWeek();
}