Compare commits

...

5 Commits

Author SHA1 Message Date
Helen Chong 251a7710af Add axe DevTools to list of accessibility testing tools 2024-07-14 10:56:36 +08:00
Helen Chong eb5f26348a Add unique aria labels to landmarks 2024-07-14 10:52:19 +08:00
Helen Chong 8d8a6f01ad Add dark mode to quote blocks on Cassette Beasts shrine 2024-07-14 10:31:28 +08:00
Helen Chong 1bbfe4495c Update accessibility statement updated date 2024-07-14 03:39:21 +08:00
Helen Chong 5f1168a715 List Alex Clapperton's Colour Contrast Checker as a testing tool 2024-07-14 03:38:50 +08:00
7 changed files with 18 additions and 13 deletions

View File

@ -12,7 +12,12 @@ const markdownItAnchor = require("markdown-it-anchor");
module.exports = function (eleventyConfig) {
// Installed Plugins
eleventyConfig.addPlugin(pluginTOC, { tags: ['h2', 'h3', 'h4', 'h5'] });
eleventyConfig.addPlugin(pluginTOC, {
tags: ['h2', 'h3', 'h4', 'h5', 'h6'],
wrapper: function (toc) {
return `<nav class="toc" aria-label="Table of contents">${toc}</nav>`;
},
});
eleventyConfig.addPlugin(embedEverything, { add: ['soundcloud'] });
// Configure slug filter

View File

@ -1,7 +1,6 @@
<header class="main__header">
{% if isArticle or hasBreadcrumbs %}
<nav>
<h2 class="visually-hidden">Breadcrumbs</h2>
<nav aria-label="Breadcrumbs">
<ol class="breadcrumbs">
{% set breadcrumbNavPages = collections.all | eleventyNavigationBreadcrumb(articleTitle or pageTitle or title) %}
{%- for entry in breadcrumbNavPages %}
@ -48,8 +47,7 @@
{{ content | safe }}
{% if tags and tags.includes("posts") %}
<nav class="blog__post--pagination">
<h2 class="visually-hidden">Next and Previous Blog Posts</h2>
<nav class="blog__post--pagination" aria-label="Next and Previous Blog Posts">
{%- if collections.posts %}
{%- set previousPost = collections.posts | getPreviousCollectionItem %}
{%- set nextPost = collections.posts | getNextCollectionItem %}

View File

@ -14,7 +14,7 @@ https://kalechips.net/projects/snippets/burger #}
{%- endif -%}
{% endset %}
<nav class="navbar">
<nav class="navbar" aria-label="Top level">
<details class="navbar__burger">
<summary class="navbar__toggle" id="toggle">
<svg aria-hidden="true" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
@ -22,7 +22,7 @@ https://kalechips.net/projects/snippets/burger #}
</svg>
Navigation
</summary>
<nav class="navbar__menu">
<nav class="navbar__menu" aria-label="Top level hamburger menu">
<ul class="navbar__menu--links">
{{ navLinksEl | safe }}
<li class="skip"><a href="#toggle">Close Menu</a></li>

View File

@ -1,4 +1,4 @@
<aside class="left-sidebar">
<aside class="left-sidebar" aria-label="Left sidebar">
<details-utils force-open="(min-width: 60rem)" force-restore>
<details class="toc__wrapper sidebar--sticky">
<summary class="toc__heading">

View File

@ -1,5 +1,5 @@
<aside class="right-sidebar">
<nav class="content__nav sidebar--sticky">
<aside class="right-sidebar" aria-label="Right sidebar">
<nav class="content__nav sidebar--sticky" aria-label="Sidebar">
<h2 class="content__nav--title">My Contents</h2>
<ul class="content__nav--links">
{% for archive in collections.archive %}

View File

@ -45,6 +45,8 @@
--clr-bold-txt: #ff9869;
--clr-link: #ce97ff;
--clr-link-hover: #b366f7;
--clr-quote-bg: #141414;
--clr-quote-border: #f3f2f2;
--clr-navbar-bg: #3a0873;
--clr-main-footer-bg: #3a0873;

View File

@ -1,7 +1,7 @@
---
title: Accessibility
keyword: accessibility statement
updated: 2024-07-06
updated: 2024-07-14
eleventyNavigation:
order: 13
---
@ -29,9 +29,9 @@ This site uses the [Lexend](https://www.lexend.com/) font family as the default
I use the following tools to test my site for accessibility:
* WebAIM's [WAVE Browser Extension](https://wave.webaim.org/extension/)
* [axe DevTools - Web Accessibility Testing](https://www.deque.com/axe/browser-extensions/) browser extension
* [ANDI Accessibility Testing Tool](https://www.ssa.gov/accessibility/andi/help/install.html)
* [C. Liam Brown's Colour Contrast Tool](https://cliambrown.com/contrast/)
* [Acart Communications' Contrast Checker](https://contrastchecker.com/)
* [Alex Clapperton's Colour Contrast Checker](https://colourcontrast.cc/)
* [NVDA](https://www.nvaccess.org/about-nvda/) screen reader for Windows
* TalkBack screen reader for Android
* VoiceOver screen reader for iOS