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) %}