From 4ee8df18be708080e73a592125dad1882c5326fb Mon Sep 17 00:00:00 2001 From: Djeex Date: Wed, 6 Aug 2025 13:16:47 +0000 Subject: [PATCH] Fixed wrong dir --- gallery.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gallery.py b/gallery.py index 0e78138..aecc3a8 100644 --- a/gallery.py +++ b/gallery.py @@ -7,8 +7,8 @@ GALLERY_YAML = "config/gallery.yaml" SITE_YAML = "config/site.yaml" # Image directories -GALLERY_DIR = Path("public/img/gallery") -HERO_DIR = Path("public/img/hero") +GALLERY_DIR = Path("config/photos/gallery") +HERO_DIR = Path("config/photos/hero") def load_yaml(path): print(f"[→] Loading {path}...")