diff --git a/frontend/src/pages/posts/[slug].astro b/frontend/src/pages/posts/[slug].astro index 69768f5..b584d41 100644 --- a/frontend/src/pages/posts/[slug].astro +++ b/frontend/src/pages/posts/[slug].astro @@ -78,7 +78,7 @@ const displayTitle = post ? (post.title || formatSlug(post.slug)) : 'Work'; image={post?.cover_image?.url} type="article" > - {post?.cover_image?.url && ( + {!isBlog && post?.cover_image?.url && ( @@ -113,20 +113,6 @@ const displayTitle = post ? (post.title || formatSlug(post.slug)) : 'Work'; )} - {/* Blog mode: cover rides above the plaque as a lead image. In atelier - the cover is the index plate's job, not the post page's. */} - {isBlog && post.cover_image?.url && ( -
- {post.cover_image.alt -
- )} - {/* Plaque header */}

@@ -174,7 +160,11 @@ const displayTitle = post ? (post.title || formatSlug(post.slug)) : 'Work'; {/* Body — works on paper */}
- {(neighbors.prev || neighbors.next) && ( + {isBlog ? ( + + ) : (neighbors.prev || neighbors.next) && (