zwischenstand
This commit is contained in:
@@ -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 />
|
||||
|
||||
Reference in New Issue
Block a user