Skip to content
Snippets Groups Projects
Commit bb5b7ef0 authored by Josh Borrow's avatar Josh Borrow
Browse files

Added about compiler to the regular one so they are both ran at the same time

parent 93e31e26
No related branches found
No related tags found
No related merge requests found
......@@ -108,15 +108,27 @@ def render(render_pages, data_dir, template_dir, output_dir):
if __name__ == "__main__":
pages = [
import about
DATA_DIR = "../data"
TEMPLATE_DIR = "."
OUTPUT_DIR = "./compiled"
PAGES = [
"index.html",
"pubs.html",
"talks.html"
]
about.compile_to_yaml(
in_filename="about_meta.yaml",
out_filename="about.yaml",
data_dir=DATA_DIR
)
render(
render_pages=pages,
data_dir="../data",
template_dir=".",
output_dir="./compiled",
render_pages=PAGES,
data_dir=DATA_DIR,
template_dir=TEMPLATE_DIR,
output_dir=OUTPUT_DIR,
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment