Skip to content

Commit bd05f65

Browse files
zmx721joelostblom
andauthored
Quarto mod5 (#76)
* remove files not needed for quarto * add basic environment file * quarto file structure and update style * remove sklearn specific style * update quiz background color * update quiz correctAnswers logic * mod5 * update examples * fix pyodide error --------- Co-authored-by: Joel Ostblom <[email protected]>
1 parent e943d4d commit bd05f65

24 files changed

+3332
-1
lines changed

_quarto.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,28 @@ website:
160160
- text: '&nbsp;&nbsp; 7.1. Exercises'
161161
href: modules/module4/module4-24-practice_operations_with_dataframe_columns.qmd
162162
- href: modules/module4/module4-25-what_did_we_just_learn.qmd
163+
- section: "**Module 5: Making Choices and Repeating Iterations**"
164+
contents:
165+
- href: modules/module5/module5-00-module_learning_outcomes.qmd
166+
- href: modules/module5/module5-01-making_choices_with_conditional_statements.qmd
167+
- text: '&nbsp;&nbsp; 1.1. Exercises'
168+
href: modules/module5/module5-02-quick_questions_with_conditionals.qmd
169+
- href: modules/module5/module5-06-repeated_iterations_(loops).qmd
170+
- text: '&nbsp;&nbsp; 2.1. Exercises'
171+
href: modules/module5/module5-07-repeated_iterations_questions.qmd
172+
- href: modules/module5/module5-09-range_dictionaries_and_comprehensions.qmd
173+
- text: '&nbsp;&nbsp; 3.1. Exercises'
174+
href: modules/module5/module5-10-range_questions.qmd
175+
- href: modules/module5/module5-13-nested_loops.qmd
176+
- text: '&nbsp;&nbsp; 4.1. Exercises'
177+
href: modules/module5/module5-14-nested_loop_questions.qmd
178+
- href: modules/module5/module5-16-repeated_iterations_with_conditions.qmd
179+
- text: '&nbsp;&nbsp; 5.1. Exercises'
180+
href: modules/module5/module5-17-conditional_loop_questions.qmd
181+
- href: modules/module5/module5-19-functions.qmd
182+
- text: '&nbsp;&nbsp; 6.1. Exercises'
183+
href: modules/module5/module5-20-function_questions.qmd
184+
- href: modules/module5/module5-23-what_did_we_just_learn.qmd
163185

164186
# Since we are declaring options for two formats here (html and revealjs)
165187
# each qmd file needs to include a yaml block including which format to use for that file.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
format:
3+
html:
4+
page-layout: full
5+
---
6+
7+
# 0. Module Learning Outcomes
8+
9+
::: {.panel-tabset .nav-pills}
10+
11+
## Video
12+
13+
<iframe
14+
class="video"
15+
src="https://www.youtube.com/embed/w7cfM6ReOzU?start=0&end=50&rel=0"
16+
title="Module 5 Video - Module Learning Outcomes"
17+
frameborder="0"
18+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
19+
allowfullscreen
20+
></iframe>
21+
22+
## Slides
23+
24+
<iframe
25+
class="slide-deck"
26+
src="slides/module5_00.html"
27+
></iframe>
28+
29+
:::
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
format:
3+
html:
4+
page-layout: full
5+
---
6+
7+
# 1. Making Choices with Conditional Statements
8+
9+
::: {.panel-tabset .nav-pills}
10+
11+
## Video
12+
13+
<iframe
14+
class="video"
15+
src="https://www.youtube.com/embed/yz6Wwa2MkQA?start=6&end=619&rel=0"
16+
title="Module 5 Video - Making Choices with Conditional Statements"
17+
frameborder="0"
18+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
19+
allowfullscreen
20+
></iframe>
21+
22+
## Slides
23+
24+
<iframe
25+
class="slide-deck"
26+
src="slides/module5_01.html"
27+
></iframe>
28+
29+
:::

0 commit comments

Comments
 (0)