diff options
author | 2021-06-16 17:19:23 -0400 | |
---|---|---|
committer | 2021-06-16 17:19:23 -0400 | |
commit | e711668556ab5230af7af611c941f59014d27a1b (patch) | |
tree | af0e42ce8fd4bfd4d838645ba5c199d3a5c1fda3 /examples/blog/src/components/MainHead.astro | |
parent | 5c01526731ada6bc41b334d1630bf472e2690126 (diff) | |
download | astro-e711668556ab5230af7af611c941f59014d27a1b.tar.gz astro-e711668556ab5230af7af611c941f59014d27a1b.tar.zst astro-e711668556ab5230af7af611c941f59014d27a1b.zip |
Improvement/accessibility blog example (#475)
* improvements: updated heading tag order, removed repeat alt values, added aria-labels
* chore: added changeset
Diffstat (limited to 'examples/blog/src/components/MainHead.astro')
-rw-r--r-- | examples/blog/src/components/MainHead.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/blog/src/components/MainHead.astro b/examples/blog/src/components/MainHead.astro index 86f750ddc..dfc47fc01 100644 --- a/examples/blog/src/components/MainHead.astro +++ b/examples/blog/src/components/MainHead.astro @@ -23,8 +23,8 @@ export let canonicalURL: string | undefined; <!-- SEO --> <link rel="canonical" href={canonicalURL}> -{next && <link rel="next" href={new URL(next, canonicalURL).href}>} -{prev && <link rel="prev" href={new URL(prev, canonicalURL).href}>} +{next && <link rel="next" aria-label="Previous Page" href={new URL(next, canonicalURL).href}>} +{prev && <link rel="prev" aria-label="Next Page" href={new URL(prev, canonicalURL).href}>} <!-- OpenGraph --> <meta property="og:title" content={title}> |