From 6236819e2b4945a21b13ce71e6ac53156ed9a27e Mon Sep 17 00:00:00 2001 From: Starnakin Date: Tue, 6 May 2025 23:14:58 +0200 Subject: [PATCH] fix: rename general.html -> index.html --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index fc50382..18811f5 100644 --- a/src/main.py +++ b/src/main.py @@ -87,7 +87,7 @@ def gen_bulk(bulk_path: Path): if config.CREATE_GENERAL_ALBUM: for album in albums: if (album.name == "general"): - album.path = Path(bulk_path, "general.html") + album.path = Path(bulk_path, "index.html") Path("./src/templates/bulk_page.css").copy_to(Path(bulk_path, "bulk_page.css")) create_pages(pages)