🚚 move out comics data

This commit is contained in:
mi
2025-11-06 21:32:40 +10:00
parent b8a75571a5
commit 0d229fd442
2 changed files with 30 additions and 28 deletions

29
comics_data.py Normal file
View File

@@ -0,0 +1,29 @@
# Comic data
# Edit this file to add, remove, or modify comics
COMICS = [
{
'number': 1,
'title': 'First Comic',
'filename': 'comic-001.png',
'date': '2025-01-01',
'alt_text': 'The very first comic',
'transcript': 'This is where your comic journey begins!'
},
{
'number': 2,
'title': 'Second Comic',
'filename': 'comic-002.png',
'date': '2025-01-08',
'alt_text': 'The second comic',
'transcript': 'The adventure continues...'
},
{
'number': 3,
'title': 'Third Comic',
'filename': 'comic-003.png',
'date': '2025-01-15',
'alt_text': 'The third comic',
'transcript': 'Things are getting interesting!'
},
]