Derick Montague | 365bce5 | 2020-01-03 08:36:20 -0600 | [diff] [blame] | 1 | module.exports = { |
| 2 | base: "/webui-vue/", |
| 3 | title: "OpenBMC Web UI Style Guide", |
| 4 | description: |
| 5 | "Guidance on code style and development for the OpenBMC browser-based UI", |
| 6 | smoothScroll: true, |
| 7 | themeConfig: { |
| 8 | nav: [ |
| 9 | { |
| 10 | text: "Guide", |
Derick Montague | 7fc4cd7 | 2020-02-07 12:06:41 -0600 | [diff] [blame] | 11 | link: "/guide/" |
Derick Montague | 365bce5 | 2020-01-03 08:36:20 -0600 | [diff] [blame] | 12 | }, |
| 13 | { |
| 14 | text: "Themes", |
| 15 | link: "/themes/" |
| 16 | }, |
| 17 | { |
| 18 | text: "Github", |
| 19 | link: "https://github.com/openbmc/webui-vue" |
| 20 | } |
| 21 | ], |
| 22 | sidebarDepth: 1, |
| 23 | sidebar: { |
| 24 | "/guide/": [ |
Derick Montague | 7fc4cd7 | 2020-02-07 12:06:41 -0600 | [diff] [blame] | 25 | "", |
Derick Montague | 365bce5 | 2020-01-03 08:36:20 -0600 | [diff] [blame] | 26 | { |
| 27 | title: "Coding Standards", |
| 28 | children: [ |
| 29 | "/guide/coding-standards/", |
| 30 | ["/guide/coding-standards/accessibility", "Accessibility"], |
| 31 | ["/guide/coding-standards/sass", "SASS"], |
| 32 | ["/guide/coding-standards/javascript", "JavaScript"] |
| 33 | ] |
| 34 | }, |
| 35 | { |
| 36 | title: "Guidelines", |
| 37 | children: [ |
| 38 | "/guide/guidelines/", |
| 39 | "/guide/guidelines/colors", |
Derick Montague | 221b318 | 2020-04-14 16:10:24 -0500 | [diff] [blame] | 40 | "/guide/guidelines/motion", |
Derick Montague | 365bce5 | 2020-01-03 08:36:20 -0600 | [diff] [blame] | 41 | "/guide/guidelines/typography" |
| 42 | ] |
| 43 | }, |
| 44 | { |
| 45 | title: "Components", |
Derick Montague | 3f6710a | 2020-03-04 00:59:47 -0600 | [diff] [blame] | 46 | children: [ |
| 47 | "/guide/components/", |
Derick Montague | fd22b5b | 2020-03-13 15:15:43 -0500 | [diff] [blame] | 48 | "/guide/components/alert", |
Derick Montague | 3f6710a | 2020-03-04 00:59:47 -0600 | [diff] [blame] | 49 | "/guide/components/button", |
Derick Montague | 4e90eed | 2020-03-03 18:11:44 -0600 | [diff] [blame] | 50 | "/guide/components/toast", |
Derick Montague | 3f6710a | 2020-03-04 00:59:47 -0600 | [diff] [blame] | 51 | ] |
Derick Montague | 365bce5 | 2020-01-03 08:36:20 -0600 | [diff] [blame] | 52 | } |
Derick Montague | 7fc4cd7 | 2020-02-07 12:06:41 -0600 | [diff] [blame] | 53 | ], |
Derick Montague | b115aea | 2020-04-17 16:49:15 -0500 | [diff] [blame] | 54 | "/themes/": ["", "customize"] |
Derick Montague | 365bce5 | 2020-01-03 08:36:20 -0600 | [diff] [blame] | 55 | }, |
Derick Montague | 365bce5 | 2020-01-03 08:36:20 -0600 | [diff] [blame] | 56 | } |
| 57 | }; |