-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into content/track-sap-fico
- Loading branch information
Showing
27 changed files
with
146 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
+++ | ||
title="Help us doc!" | ||
description="This is a [🅷🆄🅶🅾](https://gohugo.io/)-based platform called [🌱common](https://github.com/CodeYourFuture/curriculum/tree/main/common-theme)" | ||
map=["theme", "content", "community"] | ||
menus_to_map=["theme", "content", "community"] | ||
menu=["syllabus"] | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +0,0 @@ | ||
+++ | ||
title = 'Map' | ||
time = 2 | ||
emoji= '🗺️' | ||
[build] | ||
render = 'never' | ||
list = 'local' | ||
publishResources = false | ||
+++ | ||
|
||
A map is an ordered slice of menus. It's to show a "map" view of the syllabus, broken down into grouped modules. As with everything in this design, the point is to clarify what happens and in what order. | ||
|
||
It's just for the index page, and the front matter is a list of the menu names that should be included in the map, in the order they should appear. | ||
|
||
```toml | ||
map = ["menuName", "menuName"] | ||
``` | ||
19 changes: 19 additions & 0 deletions
19
common-docs/content/common-theme/front-matter/blocks/menu-map/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
+++ | ||
title = 'Menu map' | ||
time = 2 | ||
emoji= '🗺️' | ||
[build] | ||
render = 'never' | ||
list = 'local' | ||
publishResources = false | ||
+++ | ||
|
||
A menu map is an ordered slice of menus. It's to show a "map" view of the syllabus, broken down into grouped modules. As with everything in this design, the point is to clarify what happens and in what order. | ||
|
||
It's just for the index page, and the front matter is a list of the menu names that should be included in the map, in the order they should appear. | ||
|
||
If you want to attach metadata to each menu item (e.g. to add a description), you probably want a Taxonomy map. | ||
|
||
```toml | ||
menus_to_map = ["menuName", "menuName"] | ||
``` |
17 changes: 17 additions & 0 deletions
17
common-docs/content/common-theme/front-matter/blocks/taxonomy-map/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
+++ | ||
title = 'Taxonomy map' | ||
time = 2 | ||
emoji= '🗺️' | ||
[build] | ||
render = 'never' | ||
list = 'local' | ||
publishResources = false | ||
+++ | ||
|
||
A taxonomy map is an ordered slice of terms within a taxonomy. It's to show a "map" view of the syllabus, broken down into grouped modules, with extra per-module metadata attached to the term. As with everything in this design, the point is to clarify what happens and in what order. | ||
|
||
It's just for the index page, and the front matter is a list of the menu names that should be included in the map, in the order they should appear. | ||
|
||
```toml | ||
taxonomy_to_map = "modules" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{{/* | ||
Expects a slice[dict] param containing an ordered list of dicts with the following keys, one per section in the map to render: | ||
* title (string) - The heading to display for the section. | ||
* values (slice[Page]) - A slice of Pages, one per page in the section which should be listed. | ||
*/}} | ||
|
||
<div class="c-map"> | ||
<h1 class="e-heading c-map__start is-none--lt-container">👉🏾</h1> | ||
{{ range $i, $section := index . "sections" }} | ||
{{ $sectionTitle := index $section "title" }} | ||
{{ $sectionValues := index $section "values" }} | ||
<section class="c-map__block"> | ||
<h2 class="e-heading c-map__title"> | ||
📍{{ $i }}: | ||
{{ $sectionTitle }} | ||
</h2> | ||
<ol class="c-map__timeline"> | ||
{{/* Check if a menu for the current map section exists */}} | ||
{{ if $sectionValues }} | ||
{{/* Range over the items in the menu */}} | ||
{{ range $iterator, $module := $sectionValues }} | ||
<li | ||
class="c-map__stop" | ||
style="--layer:{{ sub (len $sectionValues) (add $iterator 1) }}"> | ||
{{ partial "card.html" $module }} | ||
</li> | ||
{{ end }} | ||
{{ else }} | ||
<li>No items found for {{ $sectionTitle }}</li> | ||
{{ end }} | ||
</ol> | ||
</section> | ||
{{ end }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{{/* Expects slice[string] param which is the name of the menus to render as sections. */}} | ||
|
||
{{ $sections := slice }} | ||
|
||
{{ range $menuName := . }} | ||
{{ $section := dict "title" $menuName "values" (index site.Menus $menuName) }} | ||
{{ $sections = append $section $sections }} | ||
{{ end }} | ||
|
||
{{ $params := dict "sections" $sections }} | ||
|
||
{{ partial "map-common.html" $params }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{{/* Expects string param which is the (plural) name of the taxonomy to render. */}} | ||
|
||
{{ $taxonomy_to_map := . }} | ||
|
||
{{ $sections := slice }} | ||
|
||
{{/* You can't ask for a taxonomy to be sorted by weight, so we need to get weights and iterate ourselves - see https://discourse.gohugo.io/t/list-custom-taxonomy-terms-in-a-specific-order-not-alphabetical/18145/5 */}} | ||
{{ $terms := site.GetPage (printf "/%s" $taxonomy_to_map) }} | ||
{{ range $termPage := $terms.Pages.ByWeight }} | ||
{{ $termID := path.BaseName $termPage.Path }} | ||
{{ $termTitle := $termPage.Title }} | ||
{{ $values := index (index site.Taxonomies $taxonomy_to_map) $termID }} | ||
|
||
{{ $section := dict "title" $termTitle "values" $values }} | ||
{{ $sections = append $section $sections }} | ||
{{ end }} | ||
|
||
{{ $params := dict "sections" $sections }} | ||
|
||
{{ partial "map-common.html" $params }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,5 @@ | ||
{{ with .Params.map }} | ||
<div class="c-map"> | ||
<h1 class="e-heading c-map__start is-none--lt-container">👉🏾</h1> | ||
{{ range $i, $currentMapSectionName := . }} | ||
{{ $currentMapSectionModules := index site.Menus $currentMapSectionName }} | ||
<section class="c-map__block"> | ||
<h2 class="e-heading c-map__title"> | ||
📍{{ $i }}: | ||
{{ $currentMapSectionName }} | ||
</h2> | ||
<ol class="c-map__timeline"> | ||
{{/* Check if a menu for the current map section exists */}} | ||
{{ if $currentMapSectionModules }} | ||
{{/* Range over the items in the menu */}} | ||
{{ range $iterator, $module := $currentMapSectionModules }} | ||
<li | ||
class="c-map__stop" | ||
style="--layer:{{ sub (len $currentMapSectionModules) (add $iterator 1) }}"> | ||
{{ partial "card.html" $module }} | ||
</li> | ||
{{ end }} | ||
{{ else }} | ||
<li>No items found for {{ $currentMapSectionName }}</li> | ||
{{ end }} | ||
</ol> | ||
</section> | ||
{{ end }} | ||
</div> | ||
{{ end }} | ||
{{/* Expects Page as a param, and that the page will have a .Params.map which contains a slice[string] of menus to render as sections. */}} | ||
|
||
{{/* This is legacy support which we will deprecate at some point. */}} | ||
{{ warnf "Using the map param is deprecated - rename this param to menus_to_map" }} | ||
{{ partial "map-menu.html" .Params.map }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
+++ | ||
title="Intro to Programming" | ||
map=["start here", "programming", "next steps"] | ||
menus_to_map=["start here", "programming", "next steps"] | ||
description="New? Lost? [Quickstart](how-this-works/prep/#overview)" | ||
emoji= "🧑🏿🏫" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
+++ | ||
title="Tracks" | ||
map=["start here", "from itp", "from sdc"] | ||
taxonomy_to_map = "track_kinds" | ||
description="Short, focused courses walking you towards specific careers" | ||
emoji= "👣" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
+++ | ||
title = "Jobs after ITP" | ||
weight = 2 | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
+++ | ||
title = "Jobs after SDC" | ||
weight = 3 | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
+++ | ||
title = "Self-study" | ||
weight = 1 | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
+++ | ||
title="Our Courses" | ||
map=["start here", "selection", "trainees", "fellowships"] | ||
menus_to_map=["start here", "selection", "trainees", "fellowships"] | ||
description="Free training for good jobs in tech [📅 2024/25](https://docs.google.com/spreadsheets/d/1qNxf44_vbNKU1KeFozGX7Kt1QxmTtU6Bf9tOh1sTUuc/edit?gid=1346767713#gid=1346767713)" | ||
emoji= "🧑🏿🏫👨🏽🎓" | ||
+++ |