From 24432cd52acae183416d8e198206923bddb815b8 Mon Sep 17 00:00:00 2001 From: giles Date: Sat, 21 Feb 2026 22:31:58 +0000 Subject: [PATCH] Page-aware labels in blog_new template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - "Post title"→"Page title", "Create Post"→"Create Page" when is_page Co-Authored-By: Claude Opus 4.6 --- browser/templates/_types/blog_new/_main_panel.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browser/templates/_types/blog_new/_main_panel.html b/browser/templates/_types/blog_new/_main_panel.html index 5523068..6c3d264 100644 --- a/browser/templates/_types/blog_new/_main_panel.html +++ b/browser/templates/_types/blog_new/_main_panel.html @@ -70,7 +70,7 @@ type="text" name="title" value="" - placeholder="Post title..." + placeholder="{{ 'Page title...' if is_page else 'Post title...' }}" class="w-full text-[36px] font-bold bg-transparent border-none outline-none placeholder:text-stone-300 mb-[8px] leading-tight" > @@ -101,7 +101,7 @@ type="submit" class="px-[20px] py-[6px] bg-stone-700 text-white text-[14px] rounded-[8px] hover:bg-stone-800 transition-colors cursor-pointer" - >Create Post + >{{ 'Create Page' if is_page else 'Create Post' }}