From a9eda558c0292898cb80404793915f7be4ce563a Mon Sep 17 00:00:00 2001 From: Mischa Date: Fri, 19 Jun 2026 17:01:45 +0200 Subject: [PATCH] fix: nav slash, back button context, home page max-width MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Past Trips nav link: add missing / (base_url_absolute has no trailing slash) - Entry back link: history.back() with journal fallback, label → "← Back" - Home page: max-width 1400px instead of none — narrows layout on wide screens Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01RB86BaJBG3eGiMdfhmHRrQ --- themes/intotheeast/css/style.css | 2 +- themes/intotheeast/templates/entry.html.twig | 2 +- themes/intotheeast/templates/partials/base.html.twig | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/themes/intotheeast/css/style.css b/themes/intotheeast/css/style.css index 292e273..03dc786 100644 --- a/themes/intotheeast/css/style.css +++ b/themes/intotheeast/css/style.css @@ -651,7 +651,7 @@ body::after { /* ── Home page layout ────────────────────────────────────────────────────────── */ -.home-page .site-main { max-width: none; padding: 0; } +.home-page .site-main { max-width: 1400px; margin: 0 auto; padding: 0; } .home-layout { display: grid; diff --git a/themes/intotheeast/templates/entry.html.twig b/themes/intotheeast/templates/entry.html.twig index 82acf5c..a095fc2 100644 --- a/themes/intotheeast/templates/entry.html.twig +++ b/themes/intotheeast/templates/entry.html.twig @@ -121,7 +121,7 @@ {% endif %} {% endblock %} diff --git a/themes/intotheeast/templates/partials/base.html.twig b/themes/intotheeast/templates/partials/base.html.twig index f74887e..7cc3a30 100644 --- a/themes/intotheeast/templates/partials/base.html.twig +++ b/themes/intotheeast/templates/partials/base.html.twig @@ -18,7 +18,7 @@ {% block nav %} {% endblock %}