Blog author {data.authorName}

{#each data.posts as post}
{post.title}
{#if post.tags.length > 0}
{#each post.tags as tag} {tag} {/each}
{/if}
{post.author}
{dayjs .unix(post.created) .format("ddd, DD MMM YYYY HH:mm")}
{post.words} words
{post.readingTime} minute read
{post.content.split(" ").slice(0, 20).join(" ") + "..."} Read more...
{/each}