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:
parent
3d7e974471
commit
69f60aab36
20 changed files with 641 additions and 46 deletions
12
generate_site.py
Normal file
12
generate_site.py
Normal 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)
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue