summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/main_generate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/main_generate.py b/modules/main_generate.py
index 44e673e..f8aae67 100644
--- a/modules/main_generate.py
+++ b/modules/main_generate.py
@@ -23,7 +23,7 @@ def generate(jinja_env: jinja2.Environment, output_root_path: str, local: bool):
os.mkdir(output_root_path)
- root_template = jinja_env.get_template("main.html.j2")
+ root_template = jinja_env.get_template("main_base.html.j2")
with open(os.path.join(output_root_path, "index.html"), "w") as f:
f.write(root_template.render({"url" : Config.MAIN_ROOT_URL}))