Unification

This commit is contained in:
2024-03-24 23:35:50 +01:00
parent f062f3eaf9
commit 296fe40085
11 changed files with 36 additions and 39 deletions

View File

@@ -47,12 +47,9 @@ const tags = await getTags();
<TagComponent tag={tag} transition:name={`${tag}-tag-filter`} />
))}
</div>
<hr>
{posts.map((post, index) => (
<div>
<PostComponent post={post}/>
{index !== posts.length - 1 &&
<hr/>}
</div>
))}
</PageLayout>

View File

@@ -63,12 +63,9 @@ const {posts, tag} = Astro.props;
<TagComponent tag={tag} noLink="true" transition:name={`${tag}-tag-filter`}/>
</a>
</div>
<hr>
{posts.map((post, index) => (
<div>
<PostComponent post={post}/>
{index !== posts.length - 1 &&
<hr/>}
</div>
))}
</PageLayout>