Sorry for the delay, I've been traveling.
You don't need to create any additional page or content, just create one page that is structured with the essential elements for access. The WCAG 2.0 details everything you need (
$1) in detail, but in a nutshell:
* Make sure all your text content is semantically styled with headings and appropriate markup for valid HTML.
* Images and other non-textual content needs to have a textual description - images get alt text, videos get captions, charts get explanations, etc.
* Interactive elements and controls need to be keyboard controllable- anything that only works with a mouse is probably not accessible.
* Form fields need to have labels.
* If you use dynamic content or modals, ensure there are no keyboard traps where a user gets stuck in a menu or content piece that can not be exited or bypassed via the keyboard.
​
The idea is you only create one webpage, and you follow the basic rules for accessibility so you only have to maintain one page- and the users all get the same content. No second class citizens, no "extra" work for accessibility- just properly structured content, and the technology does the heavy lifting for you.
​
It might be a little overwhelming at first, but the payoff is similar to using CSS instead of manually styling every element. Let the technology do what it was designed to do- you just need to coordinate the info into the proper (accessible) format.
A very helpful site for web accessibility is WebAIM- they are a non-profit dedicated to making the web accessible, and they provide a lot of free tutorials and a great community:
$1.
​
Hope this helps, and good luck!