Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 812 Bytes

File metadata and controls

28 lines (18 loc) · 812 Bytes

This website uses staticjinja to build top level html files, please use the instructions below to modify html files.

Getting started

pip install -r requirements.txt

To monitor your source directory for changes, and recompile files if they change:

python build.py & python -m SimpleHTTPServer && fg

For Python 3.6.0 :

python build.py & python -m http.server && fg

This will recursively search ./templates for templates (any file whose name does not start with . or _) and build them to ..

Commit both the rendered html and the file inside /templates/

Contributing