From 32021aacb4213de765130914b06c66b587170d91 Mon Sep 17 00:00:00 2001 From: Botond Hende Date: Wed, 6 May 2026 19:28:03 +0200 Subject: renamed main base template --- modules/main_generate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/main_generate.py') 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})) -- cgit v1.3