Initialize generation stack

This commit is contained in:
Zachary Talis 2021-06-23 16:26:35 -04:00
parent 41e7d1c441
commit eeb582169a
4 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,11 @@
### Generate all site pages using csv files.
from utils.gen import index as gen_index
from utils.gen import categories as gen_categories
from utils.gen import runs as gen_runs
gen_index.generate()
gen_categories.generate()
gen_runs.generate()
print("Done generating site!")

View file

@ -0,0 +1,5 @@
### Generation helper for category pages
def generate():
print("- categories.py -")

View file

@ -0,0 +1,5 @@
### Generation helper for index.html
def generate():
print("- index.py -")

View file

@ -0,0 +1,5 @@
### Generation helper for run pages
def generate():
print("- runs.py -")