diff options
| author | Botond Hende <contact@wazul.moe> | 2026-05-09 08:15:08 +0200 |
|---|---|---|
| committer | Botond Hende <contact@wazul.moe> | 2026-05-09 08:15:08 +0200 |
| commit | 81964ffac36d659b450140d37ab73074660cb0bd (patch) | |
| tree | d32739afad1d4e5ab80504bb94fceec6aa4b2d13 /modules | |
| parent | 6fa30eec950b85778daf13758b94799d5fe6a6ac (diff) | |
added webmaster page and 88x31 button
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/main_generate.py | 2 |
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: |
