-
Notifications
You must be signed in to change notification settings - Fork 1
/
_quarto.yml
182 lines (154 loc) · 5.54 KB
/
_quarto.yml
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
project:
type: website
output-dir: _site
format:
html:
toc: true
theme:
light: [cosmo, theme.scss]
dark: darkly
code-copy: true
code-overflow: wrap
css: styles.css
website:
title: "OSC"
image: "images/logo.png"
favicon: "images/osc_favi.png"
twitter-card: true
site-url: https://github.com/opensourcecourse
repo-url: https://github.com/opensourcecourse/website
repo-actions: [edit]
page-navigation: true
navbar:
background: light
logo: images/oss_gateway.png
logo-alt: "OSC logo."
title: false
search: true
collapse-below: lg
left:
- text: "About"
href: index.qmd
- text: "Open Source Development"
href: osc_intro/intro.qmd
- text: "Python Intro"
href: python_intro/intro.qmd
right:
- text: "{{< iconify devicon jupyter size=xl >}}"
href: https://opensourcecourse.github.io/hub
- text: "{{< iconify devicon github size=xl >}}"
href: https://github.com/opensourcecourse/website
aria-label: OpenSourceCourse GitHub
sidebar:
- id: about
style: "floating"
collapse-level: 1
title: "Welcome"
subtitle: 'About'
logo: "images/oss_gateway.png"
contents:
- index.qmd
- acknowledgements.qmd
- id: osc
style: "floating"
collapse-level: 2
title: "Open Source Course"
subtitle: 'OSC'
logo: "images/oss_gateway.png"
contents:
- osc_intro/intro.qmd
- osc_intro/setup.qmd
- section: "Modules"
contents:
- section: "Git"
href: osc_intro/modules/git/overview.qmd
contents:
- text: 'overview'
href: osc_intro/modules/git/overview.qmd
- text: 'slides'
href: osc_intro/modules/git/slides.qmd
- text: "exercises"
href: osc_intro/modules/git/exercises.qmd
- section: "Style"
href: osc_intro/modules/style/overview.qmd
contents:
- text: 'overview'
href: osc_intro/modules/style/overview.qmd
- text: 'slides'
href: osc_intro/modules/style/slides.qmd
- text: "exercises"
href: osc_intro/modules/style/exercises.qmd
- section: "Object Oriented Python"
href: osc_intro/modules/object_oriented_python/overview.qmd
contents:
- text: 'overview'
href: osc_intro/modules/object_oriented_python/overview.qmd
- text: 'slides'
href: osc_intro/modules/object_oriented_python/slides.qmd
- text: "exercises"
href: osc_intro/modules/object_oriented_python/exercises.qmd
- section: "Functional Python"
href: osc_intro/modules/functional_python/overview.qmd
contents:
- text: 'overview'
href: osc_intro/modules/functional_python/overview.qmd
- text: 'slides'
href: osc_intro/modules/functional_python/slides.qmd
- text: "exercises"
href: osc_intro/modules/functional_python/exercises.qmd
- section: "Testing"
href: osc_intro/modules/testing/overview.qmd
contents:
- text: 'overview'
href: osc_intro/modules/testing/overview.qmd
- text: 'slides'
href: osc_intro/modules/testing/slides.qmd
- text: "exercises"
href: osc_intro/modules/testing/exercises.qmd
- section: "Documentation"
href: osc_intro/modules/documentation/overview.qmd
contents:
- text: 'overview'
href: osc_intro/modules/documentation/overview.qmd
- text: 'slides'
href: osc_intro/modules/documentation/slides.qmd
- text: "exercises"
href: osc_intro/modules/documentation/exercises.qmd
- section: "Collaborative Development"
href: osc_intro/modules/collaborative_development/overview.qmd
contents:
- text: 'overview'
href: osc_intro/modules/collaborative_development/overview.qmd
- text: 'slides'
href: osc_intro/modules/collaborative_development/slides.qmd
- text: "exercises"
href: osc_intro/modules/collaborative_development/exercises.qmd
- section: "Project Structure"
href: osc_intro/modules/structure/overview.qmd
contents:
- text: 'overview'
href: osc_intro/modules/structure/overview.qmd
- text: 'slides'
href: osc_intro/modules/structure/slides.qmd
- text: "exercises"
href: osc_intro/modules/structure/exercises.qmd
- osc_intro/going_forward.qmd
- id: py_intro
style: "floating"
collapse-level: 2
title: "Python Intro"
subtitle: 'OSC'
logo: "python_intro/images/blocks.png"
contents:
- python_intro/intro.qmd
- section: "Modules"
contents:
- section: "Data Types"
href: python_intro/modules/datatypes/overview.qmd
contents:
- text: 'overview'
href: python_intro/modules/datatypes/overview.qmd
- text: 'slides'
href: python_intro/modules/datatypes/slides.qmd
- text: "exercises"
href: python_intro/modules/datatypes/exercises.qmd