forked from harness/developer-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars-university.js
102 lines (98 loc) · 2.27 KB
/
sidebars-university.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
university: [
// University Parent
{
type: "category",
label: "University",
className: "sidebar-univ",
link: {
type: "doc",
id: "university-home",
//type: 'generated-index',
},
collapsed: false,
items: [
// CI
{
type: "doc",
label: "Continuous Integration",
id: "continuous-integration",
className: "sidebar-ci",
},
// CD
{
type: "doc",
label: "Continuous Delivery & GitOps",
id: "continuous-delivery",
className: "sidebar-cd",
},
//ff
{
type: "doc",
label: "Feature Flags",
id: "feature-flags",
className: "sidebar-ff",
},
//CCM
{
type: "doc",
label: "Cloud Cost Management",
id: "cloud-cost-management",
className:"sidebar-ccm"
},
//sto
{
type: "doc",
label: "Security Testing Orchestration",
id: "sto",
className:"sidebar-sto"
},
//sei
{
type: "doc",
label: "Software Engineering Insights",
id: "sei",
className:"sidebar-sei"
},
//ce
{
type: "doc",
label: "Chaos Engineering",
id: "chaos-engineering",
className:"sidebar-ce"
},
//idp
{
type: "doc",
label: "Internal Developer Portal",
id: "idp",
className:"sidebar-idp"
},
//vILT
{
type: "link",
label: "Virtual Instructor-Led Calendar",
href: "https://university-registration.harness.io/calendar",
className: "sidebar-vilt-cal",
},
// Instructions
{
type: "doc",
label: "Instructions",
id: "instructions",
className: "sidebar-ilt-instructions",
},
// FAQs
{
type: "doc",
label: "FAQs",
id: "faqs",
className: "sidebar-faqs",
},
],
},
],
};
module.exports = sidebars;