Skip to content

Commit 70336b4

Browse files
author
Kristopher Turner
committed
fix: explicit category wrappers restore proper sidebar grouping
1 parent a0c7694 commit 70336b4

1 file changed

Lines changed: 58 additions & 9 deletions

File tree

sidebars.js

Lines changed: 58 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,69 @@
1717
const sidebars = {
1818
sidebar: [
1919
{ type: 'doc', id: 'index' },
20-
{ type: 'autogenerated', dirName: 'planning' },
21-
{ type: 'autogenerated', dirName: 'design' },
22-
{ type: 'autogenerated', dirName: 'implementation' },
23-
{ type: 'autogenerated', dirName: 'automation' },
24-
{ type: 'autogenerated', dirName: 'operations' },
25-
{ type: 'autogenerated', dirName: 'azure-services' },
26-
{ type: 'autogenerated', dirName: 'lab-environment' },
27-
{ type: 'doc', id: 'reference' },
28-
{ type: 'autogenerated', dirName: 'standards' },
20+
{
21+
type: 'category',
22+
label: 'Planning & Discovery',
23+
collapsed: true,
24+
collapsible: true,
25+
items: [{ type: 'autogenerated', dirName: 'planning' }],
26+
},
27+
{
28+
type: 'category',
29+
label: 'Design',
30+
collapsed: true,
31+
collapsible: true,
32+
link: { type: 'generated-index', description: 'High-Level and Low-Level design documents for Azure Local deployments.' },
33+
items: [{ type: 'autogenerated', dirName: 'design' }],
34+
},
35+
{
36+
type: 'category',
37+
label: 'Implementation Guide',
38+
collapsed: true,
39+
collapsible: true,
40+
items: [{ type: 'autogenerated', dirName: 'implementation' }],
41+
},
42+
{
43+
type: 'category',
44+
label: 'Automation Guide',
45+
collapsed: true,
46+
collapsible: true,
47+
items: [{ type: 'autogenerated', dirName: 'automation' }],
48+
},
49+
{
50+
type: 'category',
51+
label: 'Operations',
52+
collapsed: true,
53+
collapsible: true,
54+
items: [{ type: 'autogenerated', dirName: 'operations' }],
55+
},
2956
{
3057
type: 'link',
3158
label: 'Training',
3259
href: 'https://azurelocal.cloud/azurelocal-training/',
3360
},
61+
{
62+
type: 'category',
63+
label: 'Azure Services on Azure Local',
64+
collapsed: true,
65+
collapsible: true,
66+
items: [{ type: 'autogenerated', dirName: 'azure-services' }],
67+
},
68+
{
69+
type: 'category',
70+
label: 'Lab Environment',
71+
collapsed: true,
72+
collapsible: true,
73+
items: [{ type: 'autogenerated', dirName: 'lab-environment' }],
74+
},
75+
{ type: 'doc', id: 'reference' },
76+
{
77+
type: 'category',
78+
label: 'Standards',
79+
collapsed: true,
80+
collapsible: true,
81+
items: [{ type: 'autogenerated', dirName: 'standards' }],
82+
},
3483
],
3584
};
3685

0 commit comments

Comments
 (0)