1 Commits

Author SHA1 Message Date
84138e09b1 feat: hide title on front page 2026-01-20 10:57:26 -05:00
2 changed files with 2 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
fragment NodePage on Page { fragment NodePage on Page {
title title
isFrontPage
groupPostPage { groupPostPage {
... BuilderSections ... BuilderSections
} }

View File

@@ -6,7 +6,7 @@ defineProps<NodePageFragment>();
<template> <template>
<div id="node-page"> <div id="node-page">
<h1 class="font-bold text-4xl"> <h1 v-if="!isFrontPage" class="font-bold text-4xl">
{{ title }} {{ title }}
</h1> </h1>
<BuilderSections v-bind="groupPostPage" /> <BuilderSections v-bind="groupPostPage" />