-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsidebars.js
72 lines (72 loc) · 1.7 KB
/
sidebars.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
module.exports = {
someSidebar: [
{
type: 'category',
label: 'Inicio',
items: ['welcome', 'curriculum', 'requisites', 'homework', 'graduation',]
},
{
type: 'category',
label: 'Semana 1',
items: [
'week1/01-introduction',
'week1/02-html-css',
'week1/03-knowing-html',
'week1/04-knowing-css',
'week1/05-challenge',
// { 'week1': ['week1/01-introduction'] }
// {
// type: 'doc',
// dirName: 'week1', // generate sidebar slice from the docs folder (or versioned_docs/<version>)
// },
]
},
{
type: 'category',
label: 'Semana 2',
items: [
'week2/01-intro-week2',
'week2/02-specificity',
'week2/03-box-model',
// 'week2/04-positioning',
// 'week2/05-fonts',
// 'week2/06-backgrounds',
'week2/07-flexbox',
'week2/08-week2-practice',
'week2/09-week2-challenge',
]
},
{
type: 'category',
label: 'Semana 3',
items: [
'week3/01-week3-intro',
'week3/02-week3-whatIsJS',
'week3/03-week3-fundamentals',
'week3/04-week3-arrays',
'week3/05-week3-objetos',
'week3/week3-practice',
'week3/week3-challenge',
]
},
{
type: 'category',
label: 'Semana 4',
items: [
'week4/01-introduccion',
'week4/02-apis',
'week4/03-proyecto-api',
'week4/04-frameworks',
'week4/05-proyecto-conjunto',
'week4/06-desafio',
]
},
// {
// type: 'category',
// label: 'Markdown',
// items: [
// 'doc1', 'doc2',
// ]
// }
]
};