forked from CodeYourFuture/curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
66 lines (56 loc) · 1.53 KB
/
hugo.toml
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
title = "CYF Courses"
baseURL = "https://curriculum.codeyourfuture.io/"
[module]
[[module.imports]]
path = "github.com/CodeYourFuture/curriculum/org-cyf-theme"
[[module.imports]]
path = "github.com/CodeYourFuture/curriculum/org-cyf-guides"
[[module.imports.mounts]]
source = "content"
target = "content/guides"
[menus]
[[menus.secondary]]
name = "CYF 👈🏾"
weight = 1
url = "https://codeyourfuture.io"
[[menus.secondary]]
name = "Join Us 👋🏿"
weight = 2
url = "https://codeyourfuture.io/volunteers/"
[[menus.secondary]]
name = "Support 🫶🏼"
weight = 3
url = "https://codeyourfuture.io/donate/"
[[menus.syllabus]]
name="Intro to Digital"
url="https://codeyourfuture.io/itc/"
weight = 1
[[menus.syllabus]]
name="Intro to Programming"
url="https://programming.codeyourfuture.io/"
weight = 2
[[menus.syllabus]]
name="The Piscine"
url="https://piscine.codeyourfuture.io/"
weight = 3
[[menus.syllabus]]
name="Software Development"
url="https://sdc.codeyourfuture.io/"
weight = 4
[[menus.syllabus]]
name="The Launch"
url="https://launch.codeyourfuture.io/"
weight = 5
[[menus.syllabus]]
name="Tracks"
url="https://tracks.codeyourfuture.io/"
weight = 6
[[menus.syllabus]]
name="Systems Engineering"
url="https://systems.codeyourfuture.io/"
weight = 7
#this makes the section nav go the right way
# because of this 'unexpected behaviour' https://gohugo.io/methods/page/nextinsection/
[page]
nextPrevInSectionSortOrder = 'asc'
nextPrevSortOrder = 'asc'