From 03938a0fa73c5c628261c1d79025fcae3f4a2471 Mon Sep 17 00:00:00 2001 From: mi Date: Thu, 6 Nov 2025 21:42:20 +1000 Subject: [PATCH] :sparkles: author note --- comics_data.py | 6 +++--- templates/comic.html | 6 +++--- templates/index.html | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/comics_data.py b/comics_data.py index 47eabba..3226667 100644 --- a/comics_data.py +++ b/comics_data.py @@ -8,14 +8,14 @@ COMICS = [ 'filename': 'comic-001.png', 'date': '2025-01-01', 'alt_text': 'The very first comic', - 'transcript': 'This is where your comic journey begins!' + 'author_note': 'This is where your comic journey begins!' }, { 'number': 2, 'filename': 'comic-002.png', 'date': '2025-01-08', 'alt_text': 'The second comic', - 'transcript': 'The adventure continues...' + 'author_note': 'The adventure continues...' }, { 'number': 3, @@ -23,6 +23,6 @@ COMICS = [ 'filename': 'comic-003.png', 'date': '2025-01-15', 'alt_text': 'The third comic', - 'transcript': 'Things are getting interesting!' + 'author_note': 'Things are getting interesting!' }, ] diff --git a/templates/comic.html b/templates/comic.html index 9bfbb05..5a63ab6 100644 --- a/templates/comic.html +++ b/templates/comic.html @@ -35,10 +35,10 @@ - {% if comic.transcript %} + {% if comic.author_note %}
-

Transcript

-

{{ comic.transcript }}

+

Author Note

+

{{ comic.author_note }}

{% endif %} diff --git a/templates/index.html b/templates/index.html index 6a602df..446ed3c 100644 --- a/templates/index.html +++ b/templates/index.html @@ -35,10 +35,10 @@ - {% if comic.transcript %} + {% if comic.author_note %}
-

Transcript

-

{{ comic.transcript }}

+

Author Note

+

{{ comic.author_note }}

{% endif %}