Starting theme

This commit is contained in:
Adsooi 2021-06-08 16:19:46 +02:00
parent 83d9b13642
commit ea539cdf36
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
39 changed files with 977 additions and 0 deletions
static/js

8
static/js/header.js Normal file
View file

@ -0,0 +1,8 @@
window.addEventListener("load", () => {
let menu = document.querySelector(".navbar-menu");
// Toggle display of the menu for mobile;
document.querySelector("#navbar-toggler").addEventListener("click", () => {
menu.classList.toggle('shown');
})
})