plain mode

This commit is contained in:
mi
2025-11-07 18:37:45 +10:00
parent a69f64de7a
commit 234d78d862
5 changed files with 56 additions and 9 deletions

View File

@@ -5,6 +5,10 @@
# Individual comics can override this with 'full_width': False
FULL_WIDTH_DEFAULT = False
# Global setting: Set to True to hide header and remove nav border by default
# Individual comics can override this with 'plain': False
PLAIN_DEFAULT = False
COMICS = [
{
'number': 1,
@@ -13,14 +17,16 @@ COMICS = [
'date': '2025-01-01',
'alt_text': 'The very first comic',
'author_note': 'This is where your comic journey begins!',
'full_width': True # Optional: override FULL_WIDTH_DEFAULT for this comic
'full_width': True, # Optional: override FULL_WIDTH_DEFAULT for this comic
'plain': True, # Optional: override PLAIN_DEFAULT for this comic
},
{
'number': 2,
'filename': 'comic-002.jpg',
'date': '2025-01-08',
'alt_text': 'The second comic',
'full_width': True # Override FULL_WIDTH_DEFAULT
'full_width': True,
'plain': True,
},
{
'number': 3,