From 64a4603ec2ca7b77e7331955f8c9edb4d5ae6b87 Mon Sep 17 00:00:00 2001 From: Botond Hende Date: Fri, 1 May 2026 12:24:42 +0200 Subject: fixed codenames og:url --- modules/codenames_generate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/codenames_generate.py b/modules/codenames_generate.py index de51561..19fd284 100644 --- a/modules/codenames_generate.py +++ b/modules/codenames_generate.py @@ -23,6 +23,6 @@ def generate(jinja_env: jinja2.Environment, output_root_path: str, local: bool): root_template = jinja_env.get_template("codenames.html.j2") with open(os.path.join(output_root_path, "index.html"), "w") as f: - f.write(root_template.render({"ctx" : Config.CODENAMES_ROOT_URL, "title": Config.CODENAMES_NAME})) + f.write(root_template.render({"url" : Config.CODENAMES_ROOT_URL, "title": Config.CODENAMES_NAME})) shutil.copytree(Config.CODENAMES_ASSETS_SOURCE_DIR, output_root_path + Config.ASSETS_IMPORT_PATH) \ No newline at end of file -- cgit v1.3