move comics to their own directory

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

View File

@@ -36,7 +36,7 @@
// Update image
const img = document.querySelector('.comic-image img');
img.src = `/static/images/${comic.filename}`;
img.src = `/static/images/comics/${comic.filename}`;
img.alt = title;
img.title = comic.alt_text;