|
1 | 1 | module.exports = {
|
2 |
| - project: [], |
3 |
| - posts: [], |
4 |
| - recipes: [] |
| 2 | + project: [ |
| 3 | + { |
| 4 | + title: 'プロジェクト', |
| 5 | + children: [ |
| 6 | + '', |
| 7 | + ['ロードマップ', 'https://github.com/vue-a11y/vue-a11y.com/projects/2'], |
| 8 | + ['参加者', 'people'], |
| 9 | + ['コントリビュート', 'how-to-contribute'], |
| 10 | + ] |
| 11 | + }, |
| 12 | + { |
| 13 | + title: 'アクセシビリティ', |
| 14 | + children: [ |
| 15 | + ['リソース', 'resources'], |
| 16 | + ['Vue A11Y チェックリスト', 'vue-a11y-checklist'], |
| 17 | + ] |
| 18 | + }, |
| 19 | + { |
| 20 | + title: 'コミュニティ', |
| 21 | + children: [ |
| 22 | + ['パッケージ', 'https://github.com/vue-a11y/awesome-a11y-vue#components-and-plugins'], |
| 23 | + ['UI プロジェクト', 'https://github.com/vue-a11y/awesome-a11y-vue#accessible-libraries'], |
| 24 | + ['Awesome', 'https://github.com/vue-a11y/awesome-a11y-vue'] |
| 25 | + ] |
| 26 | + } |
| 27 | + ], |
| 28 | + |
| 29 | + posts: [ |
| 30 | + { |
| 31 | + title: 'カテゴリ', |
| 32 | + type: 'manual', |
| 33 | + children: [ |
| 34 | + ['ニュース', '/jp/category/news/'], |
| 35 | + ['HTML', '/jp/category/html/'], |
| 36 | + ['ARIA', '/jp/category/aria/'], |
| 37 | + ['WCAG', '/jp/category/wcag/'], |
| 38 | + ['ツール', '/jp/category/tools/'], |
| 39 | + ['パッケージ', '/jp/category/packages/'], |
| 40 | + ['Single Page App', '/jp/category/spa/'] |
| 41 | + ] |
| 42 | + }, |
| 43 | + // SOON |
| 44 | + // { |
| 45 | + // title: '24 Vue A11y', |
| 46 | + // type: 'manual', |
| 47 | + // children: [ |
| 48 | + // ['2020', '/category/24-vue-a11y-2020/'] |
| 49 | + // ] |
| 50 | + // }, |
| 51 | + { |
| 52 | + title: 'Twitter でフォローする', |
| 53 | + children: [ |
| 54 | + ['Sarah Drasner', 'https://twitter.com/sarah_edo'], |
| 55 | + ['Maria Lamardo', 'https://twitter.com/MariaLamardo'], |
| 56 | + ['Alan Ktquez', 'https://twitter.com/ktquez'], |
| 57 | + ['Jinjiang', 'https://twitter.com/zhaojinjiang'], |
| 58 | + ['Marcus Herrmann', 'https://twitter.com/_marcusherrmann'], |
| 59 | + ['Austin Gil', 'https://twitter.com/Stegosource'], |
| 60 | + ['Callum Macrae', 'https://twitter.com/callumacrae'], |
| 61 | + ['Kevin Deisz', 'https://twitter.com/kddeisz'], |
| 62 | + ['Victoria Bergquist', 'https://twitter.com/vicbergquist'] |
| 63 | + ] |
| 64 | + } |
| 65 | + ], |
| 66 | + |
| 67 | + recipes: [ |
| 68 | + { |
| 69 | + title: 'レシピ', |
| 70 | + children: [ |
| 71 | + '' |
| 72 | + ] |
| 73 | + }, |
| 74 | + { |
| 75 | + title: 'ウィジェット', |
| 76 | + children: [ |
| 77 | + ['アコーディオン', 'widgets/accordion'], |
| 78 | + ['アラート', 'widgets/alert'], |
| 79 | + ['パンくず', 'widgets/breadcrumbs'], |
| 80 | + ['カード', 'widgets/card'], |
| 81 | + ['カルーセル', 'widgets/carousel'], |
| 82 | + ['ダイアログ', 'widgets/dialog'], |
| 83 | + ['モバイルナビゲーション', 'widgets/mobile-navigation'], |
| 84 | + ['スキップリンク', 'widgets/skip-links'], |
| 85 | + ['タブ', 'widgets/tabs'], |
| 86 | + ['トースト', 'widgets/toast'] |
| 87 | + ] |
| 88 | + }, |
| 89 | + { |
| 90 | + title: 'ヒント', |
| 91 | + children: [ |
| 92 | + ['Vue における ARIA 属性', 'tips/aria-attributes-in-vue'] |
| 93 | + ] |
| 94 | + } |
| 95 | + ] |
5 | 96 | }
|
0 commit comments