Add bootstrap, more shortcodes and initial dark mode

This commit is contained in:
2024-11-29 14:20:38 +01:00
parent 189a933839
commit 17de8b21e6
10 changed files with 48 additions and 17 deletions

7
static/css/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

4
static/js/custom.js Normal file
View File

@@ -0,0 +1,4 @@
function toggleDarkMode() {
document.body.classList.toggle("dark-mode");
}