summaryrefslogtreecommitdiff
path: root/examples/blog/src/pages/$posts.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/blog/src/pages/$posts.astro')
-rw-r--r--examples/blog/src/pages/$posts.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog/src/pages/$posts.astro b/examples/blog/src/pages/$posts.astro
index 8ca4214a1..688ec734d 100644
--- a/examples/blog/src/pages/$posts.astro
+++ b/examples/blog/src/pages/$posts.astro
@@ -71,7 +71,7 @@ export async function createCollection() {
<Nav title={title} />
<main class="wrapper">
- <h1 class="title">All Posts</h1>
+ <h2 class="title">All Posts</h2>
<small class="count">{collection.start + 1}–{collection.end + 1} of {collection.total}</small>
{collection.data.map((post) => <PostPreview post={post} author={authorData[post.author]} />)}
</main>