28 lines
690 B
Python
28 lines
690 B
Python
# Comic data
|
|
# Edit this file to add, remove, or modify comics
|
|
|
|
COMICS = [
|
|
{
|
|
'number': 1,
|
|
'title': 'First Comic',
|
|
'filename': 'comic-001.jpg',
|
|
'date': '2025-01-01',
|
|
'alt_text': 'The very first comic',
|
|
'author_note': 'This is where your comic journey begins!'
|
|
},
|
|
{
|
|
'number': 2,
|
|
'filename': 'comic-002.jpg',
|
|
'date': '2025-01-08',
|
|
'alt_text': 'The second comic',
|
|
},
|
|
{
|
|
'number': 3,
|
|
'title': 'Third Comic',
|
|
'filename': 'comic-003.jpg',
|
|
'date': '2025-01-15',
|
|
'alt_text': 'The third comic',
|
|
'author_note': 'Things are getting interesting!'
|
|
},
|
|
]
|