Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions common-theme/assets/styles/04-components/course-overview.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.c-course-overview {
&__courses {
display: flex;
flex-direction: row;

> li {
flex: 1;
list-style: none;
}

&__course {
&__skill {
margin-bottom: 1em;
}
}
}
}
7 changes: 6 additions & 1 deletion org-cyf-theme/data/courses/itp.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@ name="Intro to Programming"
code="itp"
weight=2
menu="start here"
url="https://programming.codeyourfuture.io"
url="https://programming.codeyourfuture.io/"
description="Programming with JavaScript, Python, and SQL; collaborate to deliver working software with tests"
emoji="🐣"
days=91
commitment="part time"
frequency=3
locations=["Birmingham", "Capetown", "Glasgow", "London", "Manchester", "Sheffield"]
key_skills = [
"Understanding requirements",
"Applying building blocks of code (variables, functions, arrays, if, for, ...)",
"Edge-cases and tests",
]
6 changes: 6 additions & 0 deletions org-cyf-theme/data/courses/piscine.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@ days="22"
commitment="part time"
frequency=3
locations=["Birmingham", "Capetown", "Glasgow", "London", "Manchester", "Sheffield"]
key_skills = [
"Test understanding with:",
"Projects",
"Demos",
"Interviews",
]
8 changes: 7 additions & 1 deletion org-cyf-theme/data/courses/sdc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,10 @@ description="A secure grounding in software: binary, logic, systems, and problem
days="84"
commitment="part time"
frequency=3
locations=["Birmingham", "Capetown", "Glasgow", "London", "Manchester", "Sheffield"]
locations=["Birmingham", "Capetown", "Glasgow", "London", "Manchester", "Sheffield"]
key_skills = [
"Understanding limitations",
"Considering trade-offs",
"Designing systems",
"Working with legacy code",
]
2 changes: 1 addition & 1 deletion org-cyf/content/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
+++
title="Our Courses"
menus_to_map=["start here", "selection", "trainees", "fellowships"]
description="Free training for good jobs in tech [📅 2025](/calendar)"
description="Free training for good jobs in tech | [Calendar](/calendar) | [Overview](/overview)"
emoji= "🧑🏿‍🏫👨🏽‍🎓"
+++
4 changes: 4 additions & 0 deletions org-cyf/content/overview/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
+++
title = "Overview of software courses"
layout = "overview"
+++
25 changes: 25 additions & 0 deletions org-cyf/layouts/_default/overview.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{{ define "main" }}
{{ $site := .Site }}

{{ partial "page-header.html" . }}

{{ with . }}
<ol class="c-course-overview__courses">
{{/* Range over the courses stored in /data/courses */}}
{{ $counter := 0 }}
{{ range $index, $course:= (sort site.Data.courses "weight" "asc") }}
{{ $counter = add $counter 1 }}
{{ if $course.key_skills }}
<li class="c-course-overview__courses__course">
<h3><a href="{{ $course.url }}overview">{{ $course.name }}</a></h3>
<ul>
{{ range $key_skill := $course.key_skills }}
<li class="c-course-overview__courses__course__skill">{{ $key_skill }}</li>
{{ end }}
</ul>
</li>
{{ end }}
{{ end }}
</ol>
{{ end }}
{{ end }}
Loading