From 9a1a4996bcf0b9ae44d1e718816c0e5a84e23101 Mon Sep 17 00:00:00 2001 From: giles Date: Sat, 21 Feb 2026 22:13:50 +0000 Subject: [PATCH] Use "Page" labels instead of "Post" when editing pages - Edit: placeholder "Page title..." vs "Post title..." - Settings: slug placeholder, featured checkbox, custom template all say "page" when is_page is true Co-Authored-By: Claude Opus 4.6 --- browser/templates/_types/post_edit/_main_panel.html | 2 +- browser/templates/_types/post_settings/_main_panel.html | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/browser/templates/_types/post_edit/_main_panel.html b/browser/templates/_types/post_edit/_main_panel.html index 5148b61..05d9251 100644 --- a/browser/templates/_types/post_edit/_main_panel.html +++ b/browser/templates/_types/post_edit/_main_panel.html @@ -77,7 +77,7 @@ type="text" name="title" value="{{ ghost_post.title if ghost_post else '' }}" - placeholder="Post title..." + placeholder="{{ 'Page title...' if post and post.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" > diff --git a/browser/templates/_types/post_settings/_main_panel.html b/browser/templates/_types/post_settings/_main_panel.html index dd372b2..038fab1 100644 --- a/browser/templates/_types/post_settings/_main_panel.html +++ b/browser/templates/_types/post_settings/_main_panel.html @@ -1,5 +1,6 @@ -{# ── Post Settings Form ── #} +{# ── Post/Page Settings Form ── #} {% set gp = ghost_post or {} %} +{% set _is_page = post.is_page if post else False %} {% macro field_label(text, field_for=None) %}