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 d80ff44..35cc64f 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)
- for page in ("index", "neighbors", "wip"):
+ for page in ("index", "neighbors", "wip", "webmaster"):
template = jinja_env.get_template(f"main_{page}.html.j2")
html_file_name = f"{page}.html"
with open(os.path.join(output_root_path, html_file_name), "w") as f: