From 4376da7f4d7bb6fbedcbdeb628b0eeea90ae1aaf Mon Sep 17 00:00:00 2001 From: nebula Date: Wed, 2 Apr 2025 21:00:34 +0000 Subject: [PATCH] cachebust, new hint --- generate.py | 2 +- style.css | 4 ++++ templates/main | 2 +- templates/place | 3 ++- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/generate.py b/generate.py index 965d504..54f42b8 100644 --- a/generate.py +++ b/generate.py @@ -110,7 +110,7 @@ def render_places(): with open("md/" + placename + ".md", "r") as f: md = markdown(f.read()) except FileNotFoundError: - md = "" + md = "

No story (yet)

" with open(working_path + "/index.html", "w") as f: f.write(template.render({ "count": count, diff --git a/style.css b/style.css index 2c48c77..4f5b706 100644 --- a/style.css +++ b/style.css @@ -63,6 +63,10 @@ h1, h3 { /* in-album page */ +.hint { + text-align: center; +} + .locationDisplay { margin-top: 1em; border-left: 0.2em solid black; diff --git a/templates/main b/templates/main index 2c433ce..0dc0e3d 100644 --- a/templates/main +++ b/templates/main @@ -6,7 +6,7 @@ nebula's photoblog - +
diff --git a/templates/place b/templates/place index f13200e..262eda2 100644 --- a/templates/place +++ b/templates/place @@ -8,7 +8,7 @@ - +
@@ -35,6 +35,7 @@ {{ markdown }}

{{ count }} photos

+

Click or tap on images to enlarge them. Arrow keys or swiping with a touch screen scrolls through photos.

{% for width, height, photo in photos %}