✨ global option
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
# Comic data
|
||||
# Edit this file to add, remove, or modify comics
|
||||
|
||||
# Global setting: Set to True to make all comics full-width by default
|
||||
# Individual comics can override this with 'full_width': False
|
||||
FULL_WIDTH_DEFAULT = False
|
||||
|
||||
COMICS = [
|
||||
{
|
||||
'number': 1,
|
||||
@@ -9,14 +13,14 @@ COMICS = [
|
||||
'date': '2025-01-01',
|
||||
'alt_text': 'The very first comic',
|
||||
'author_note': 'This is where your comic journey begins!',
|
||||
'full_width': True # Optional: removes border and expands image width
|
||||
'full_width': True # Optional: override FULL_WIDTH_DEFAULT for this comic
|
||||
},
|
||||
{
|
||||
'number': 2,
|
||||
'filename': 'comic-002.jpg',
|
||||
'date': '2025-01-08',
|
||||
'alt_text': 'The second comic',
|
||||
'full_width': True
|
||||
'full_width': True # Override FULL_WIDTH_DEFAULT
|
||||
},
|
||||
{
|
||||
'number': 3,
|
||||
|
||||
Reference in New Issue
Block a user