{#if posts.length <= 0}

No hay Posts que mostrar

{:else} {#each posts as post}
{post.authorId} {post.createdAt.toLocaleDateString()}

{post.content}

{#if post.imageUrl} Post {/if}
{post.likesCount} likes {post.repliesCount} replies {#if post.isEdited} Editado {/if}
{/each} {/if}