Resturcturing and adding of content, fixing of display bugs related to responsive design, slight de-spaghettification of CSS. Prep work for the yet to be implemented blog engine.

This commit is contained in:
Lucia Heidecker 2025-07-11 14:13:09 +02:00
parent 3d7e974471
commit 69f60aab36
20 changed files with 641 additions and 46 deletions

12
generate_site.py Normal file
View file

@ -0,0 +1,12 @@
from staticjinja import Site
from datetime import datetime as dt
if __name__ == "__main__":
site = Site.make_site(env_globals={
'date': dt.now().strftime("%Y-%m-%d")
})
# enable automatic reloading
site.render(use_reloader=True)