zwischenstand

This commit is contained in:
2025-10-02 08:42:50 +00:00
parent 9d5baf972b
commit 099530b7c8
721 changed files with 438 additions and 1779 deletions

View File

@@ -41,21 +41,21 @@
<Loader size="3" />
{:else if contentEntry}
<Index
createdAt="{new Date(contentEntry.insertTime)}"
updatedAt="{new Date(contentEntry.updateTime)}"
metaDescription="{contentEntry.meta?.description}"
title="{contentEntry.meta?.title}"
keywords="{contentEntry.meta?.keywords}"
article="{contentEntry.meta.isArticle}"
active="{contentEntry.active}"
FAQ="{contentEntry.meta.hasFAQ}"
FAQDetails="{contentEntry.meta.FAQ}"
createdAt={new Date(contentEntry.insertTime)}
updatedAt={new Date(contentEntry.updateTime)}
metaDescription={contentEntry.meta?.description}
title={contentEntry.meta?.title}
keywords={contentEntry.meta?.keywords}
article={contentEntry.meta.isArticle}
active={contentEntry.active}
FAQ={contentEntry.meta.hasFAQ}
FAQDetails={contentEntry.meta.FAQ}
/>
{#each contentEntry.blocks || [] as block, idx}
{#if idx === breadCrumbPosition}
<Breadcrumbs location="{location}" />
<Breadcrumbs location={location} />
{/if}
<ContentBlock block="{block}" />
<ContentBlock block={block} />
{/each}
{:else}
<NotFound />