The webpage uses a minimal static site generator based on Jinja2 and Markdown2. The setup was loosely inspired by PrettyPrinted. To generate the site follow these steps:
First create a new virtual environment:
python3 -m venv env-adonath-webpage
And activate it:
source env-adonath-webpage/bin/activate
Then install the required dependencies stored in the requirements.txt
file:
python -m pip install -r requirements.txt
And run the following command to generate the pages:
python make.py generate
Finally serve the webpage to preview the content:
python make.py serve
If needed clean up the generated files:
python make.py clean