🔧 configurable comic title

This commit is contained in:
mi
2025-11-13 14:43:24 +10:00
parent 59707d3572
commit 899f2060f3
6 changed files with 24 additions and 13 deletions

View File

@@ -10,11 +10,11 @@ from xml.dom import minidom
# Add parent directory to path so we can import comics_data
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from comics_data import COMICS
from comics_data import COMICS, COMIC_NAME
# Configuration - update these for your site
SITE_URL = "http://localhost:3000" # Change to your actual domain
SITE_TITLE = "Sunday Comics"
SITE_TITLE = COMIC_NAME
SITE_DESCRIPTION = "A webcomic about life, the universe, and everything"
SITE_LANGUAGE = "en-us"