From 36135bd350e7104064b94d937f26cb94c949e40a Mon Sep 17 00:00:00 2001 From: Liz Rodriguez Date: Wed, 9 Oct 2019 19:56:02 -0400 Subject: [PATCH 1/2] add accessibility category with resources --- resources/accessibility.json | 25 +++++++++++++++++++++++++ resources/index.js | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 resources/accessibility.json diff --git a/resources/accessibility.json b/resources/accessibility.json new file mode 100644 index 0000000..3e24103 --- /dev/null +++ b/resources/accessibility.json @@ -0,0 +1,25 @@ +{ + "title": "Accessibility", + "slug": "/accessibility", + "resources": [ + { + "title": "Userway", + "desc": "Provides accessibility plugins that work without refactoring your website's existing code and will increase compliance with WCAG 2.1 , ATAG 2.0 , ADA ,& Section 508 requirements.", + "url": "https://userway.org/", + "tags": [] + }, + { + "title": "The A11Y Checklist", + "desc": "This checklist uses the The Web Content Accessibility Guidelines (WCAG) as a reference point. The WCAG is a shared standard for web content accessibility for individuals, organizations, and governments.", + "url": "https://a11yproject.com/checklist/", + "tags": [] + }, + { + "title": "HTML_CodeSniffer", + "desc": "A client-side script that checks HTML source code and detects violations of a defined coding standard.", + "url": "http://squizlabs.github.io/HTML_CodeSniffer/", + "tags": [] + } + ] + } + \ No newline at end of file diff --git a/resources/index.js b/resources/index.js index 353d8bb..3e5b8a8 100644 --- a/resources/index.js +++ b/resources/index.js @@ -13,6 +13,7 @@ import ruby from './ruby' import server from './server' import utility from './utility' import icons from './icons' +import accessibility from './accessibility' export default [ css, @@ -30,4 +31,5 @@ export default [ server, utility, icons, + accessibility, ] From 3f941113ee7c029d88a056535875c4df62fbd53f Mon Sep 17 00:00:00 2001 From: Liz Rodriguez Date: Wed, 9 Oct 2019 19:57:58 -0400 Subject: [PATCH 2/2] removed 1 accessibility item from general category --- resources/general.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/resources/general.json b/resources/general.json index 1d4146c..53d8921 100644 --- a/resources/general.json +++ b/resources/general.json @@ -67,12 +67,6 @@ "desc": "Take a whirlwind tour of your next favorite language. Community-driven!", "url": "https://learnxinyminutes.com/", "tags": [] - }, - { - "title": "The A11Y Checklist", - "desc": "This checklist uses the The Web Content Accessibility Guidelines (WCAG) as a reference point. The WCAG is a shared standard for web content accessibility for individuals, organizations, and governments.", - "url": "https://a11yproject.com/checklist/", - "tags": [] } ] }