{pageContent.title}

{#each pageContent.sections as section}

{section.title}

{#each section.blocks as block} {#if isParagraph(block)}

{getParagraphContent(block)}

{:else}
    {#each getListItems(block) as item}
  • {item}
  • {/each}
{/if} {/each}
{/each}