blob: 5a8e601f54fbc804169115407b6c08fbb6a5a463 [file] [log] [blame]
Derick Montague365bce52020-01-03 08:36:20 -06001module.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 Montague7fc4cd72020-02-07 12:06:41 -060011 link: "/guide/"
Derick Montague365bce52020-01-03 08:36:20 -060012 },
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 Montague7fc4cd72020-02-07 12:06:41 -060025 "",
Derick Montague365bce52020-01-03 08:36:20 -060026 {
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",
40 "/guide/guidelines/typography"
41 ]
42 },
43 {
44 title: "Components",
Derick Montague7223a9f2020-03-12 21:49:55 +000045 children: ["/guide/components/", "/guide/components/page-section"]
Derick Montague365bce52020-01-03 08:36:20 -060046 }
Derick Montague7fc4cd72020-02-07 12:06:41 -060047 ],
48 "/themes/": [""]
Derick Montague365bce52020-01-03 08:36:20 -060049 },
Derick Montague365bce52020-01-03 08:36:20 -060050 }
51 };