summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/templates/main_base.html.j2 (renamed from main/templates/main.html.j2)0
-rw-r--r--modules/main_generate.py2
2 files changed, 1 insertions, 1 deletions
diff --git a/main/templates/main.html.j2 b/main/templates/main_base.html.j2
index 6eb6f91..6eb6f91 100644
--- a/main/templates/main.html.j2
+++ b/main/templates/main_base.html.j2
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}))