add contenu, images, burger menu

This commit is contained in:
Petite Flamby 2023-02-25 13:50:44 +01:00
parent 3df9fd681c
commit 9cae4114fa
33 changed files with 619 additions and 174 deletions

View file

@ -43,3 +43,10 @@ function toggleNavigation() {
document.body.removeAttribute("data-menu");
}
}
// date copyright
let answerDate = document.querySelector(".date");
let today = new Date();
let year = today.getFullYear();
answerDate.innerHTML = year;