summaryrefslogtreecommitdiff
path: root/examples/blog/src/pages/$author.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/blog/src/pages/$author.astro')
-rw-r--r--examples/blog/src/pages/$author.astro6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/blog/src/pages/$author.astro b/examples/blog/src/pages/$author.astro
index 6f4b0fceb..687cabb42 100644
--- a/examples/blog/src/pages/$author.astro
+++ b/examples/blog/src/pages/$author.astro
@@ -93,10 +93,10 @@ export async function createCollection() {
<Nav title={title} />
<main class="wrapper">
- <h1 class="title">
- <div class="avatar"><img class="avatar-img" src={author.image} alt={author.name}></div>
+ <h2 class="title">
+ <div class="avatar"><img class="avatar-img" src={author.image} alt=""}></div>
{author.name}
- </h1>
+ </h2>
<small class="count">{collection.start + 1}–{collection.end + 1} of {collection.total}</small>
{collection.data.map((post) => <PostPreview post={post} author={author} />)}
</main>