Files
sunday/comics_data.py
2025-11-06 21:42:20 +10:00

29 lines
742 B
Python

# 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',
'author_note': 'This is where your comic journey begins!'
},
{
'number': 2,
'filename': 'comic-002.png',
'date': '2025-01-08',
'alt_text': 'The second comic',
'author_note': 'The adventure continues...'
},
{
'number': 3,
'title': 'Third Comic',
'filename': 'comic-003.png',
'date': '2025-01-15',
'alt_text': 'The third comic',
'author_note': 'Things are getting interesting!'
},
]