move comics to their own directory

This commit is contained in:
mi
2025-11-07 16:57:10 +10:00
parent 52b98d4d5a
commit 5d357dad3f
5 changed files with 7 additions and 6 deletions

View File

@@ -39,7 +39,8 @@ sunday/
│ └── style.css # Main stylesheet
├── js/
│ └── comic-nav.js # Client-side navigation
├── images/ # Comic images
├── images/ # Image directory
│ ├── comics/ # Comic images
│ └── thumbs/ # Thumbnail images for archive
└── feed.rss # RSS feed (generated)
```
@@ -103,7 +104,7 @@ python scripts/add_comic.py
This will automatically add a new entry with defaults. Then edit `comics_data.py` to customize.
**Option 2: Manual**
1. Save your comic image in `static/images/` (e.g., `comic-001.png`)
1. Save your comic image in `static/images/comics/` (e.g., `comic-001.png`)
2. Optionally, create a thumbnail in `static/images/thumbs/` with the same filename
3. Add the comic entry to the `COMICS` list in `comics_data.py`