diff options
Diffstat (limited to 'examples/blog/src/layouts/post.astro')
-rw-r--r-- | examples/blog/src/layouts/post.astro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/blog/src/layouts/post.astro b/examples/blog/src/layouts/post.astro index 5149528a0..3379bd2dc 100644 --- a/examples/blog/src/layouts/post.astro +++ b/examples/blog/src/layouts/post.astro @@ -62,9 +62,9 @@ import authorData from '../data/authors.json'; <Nav /> <main class="wrapper"> - <h1 class="title">{content.title}</h1> - <h3 class="description">{content.description}</h3> - <img class="img" src={content.image} alt={content.title}> + <h2 class="title">{content.title}</h2> + <p class="description">{content.description}</p> + <img class="img" src={content.image} alt=""> <article class="article"> <slot /> </article> |