summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBotond Hende <contact@wazul.moe>2026-05-06 19:28:03 +0200
committerBotond Hende <contact@wazul.moe>2026-05-06 19:28:03 +0200
commit32021aacb4213de765130914b06c66b587170d91 (patch)
tree218912cecbb21de271c61caa4d9411801a9a037f /modules
parentd657930e858fe4e412920024470e1f432ce54059 (diff)
renamed main base template
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}))