diff --git a/website/content/versions/_index.md b/website/content/versions/_index.md index 21ccb71fc..f425f128a 100644 --- a/website/content/versions/_index.md +++ b/website/content/versions/_index.md @@ -1,5 +1,5 @@ +++ -title="Versions" +title="Versions" +++ ## CYF+ Iterations Log diff --git a/website/content/versions/flattened/1-0-0.md b/website/content/versions/flattened/1-0-0.md new file mode 100644 index 000000000..3aeea924e --- /dev/null +++ b/website/content/versions/flattened/1-0-0.md @@ -0,0 +1,6 @@ ++++ +title = "Version 1-0-0" +layout = "list" ++++ + + diff --git a/website/content/workbooks/workbook-0.md b/website/content/workbooks/workbook-0.md index 1ffd6ff14..aad91da7b 100644 --- a/website/content/workbooks/workbook-0.md +++ b/website/content/workbooks/workbook-0.md @@ -4,22 +4,22 @@ date="01 Oct 2022" versions=["1-0-0"] +++ -# Prep +## Prep The CYF+ Immersive Engineering Programme is an intensive three month course. There's a lot to get through and you'll need to hit the ground running. To prepare for this exciting opportunity, you will: -## Linux +### Linux - [ ] Take this [Unix 101 course](https://www.opsschool.org/unix_101.html) (and then try 102) - [ ] Print out this [Linux-Cheat-Sheet](https://www.loggly.com/wp-content/uploads/2015/05/Linux-Cheat-Sheet-Sponsored-By-Loggly.pdf) -## Go +### Go - [ ] Learn the basics of the Go programming language: [Get Started - The Go Programming Language](https://go.dev/learn/) - [ ] Read this, you might find it useful for working through your first projects: [How to use the fmt package in Golang](https://www.educative.io/answers/how-to-use-the-fmt-package-in-golang) - [ ] And optionally [Learn Go with tests](https://quii.gitbook.io/learn-go-with-tests/) -## Projects +### Projects Complete the prep and first _two_ projects from the [Immersive Go](https://github.com/CodeYourFuture/immersive-go-course) course @@ -27,7 +27,7 @@ Complete the prep and first _two_ projects from the [Immersive Go](https://githu - [ ] [CLI Files](https://github.com/CodeYourFuture/immersive-go-course/tree/main/cli-files) - [ ] [http-auth](https://github.com/CodeYourFuture/immersive-go-course/tree/main/http-auth) -## Reading +### Reading Dip in to some longer books — but don't feel you need to read the whole lot! @@ -35,6 +35,6 @@ Dip in to some longer books — but don't feel you need to read the whole lot! - [ ] [The Unix Tools Philosophy](https://www.linuxtopia.org/online_books/gnu_linux_tools_guide/the-unix-tools-philosophy.html) - [ ] [The Phoenix Project](https://smile.amazon.co.uk/Phoenix-Project-Helping-Business-Anniversary/dp/B00VBEBRK6/) -## Fun +### Fun - [ ] Play [the Bandit](https://overthewire.org/wargames/bandit/) diff --git a/website/layouts/_default/list.html b/website/layouts/_default/list.html index c1eeb43b7..c6c396f4f 100644 --- a/website/layouts/_default/list.html +++ b/website/layouts/_default/list.html @@ -21,6 +21,19 @@

{{.Title}}

{{ if (eq .Section "versions") }} + +{{ if eq .Page.Path "versions/flattened/1-0-0.md" }} + {{ range .Site.Taxonomies.versions }} + {{ range .Pages.Reverse }} +
+

{{ .Page.Title }}

+ {{ .Page.Content }} +
+ {{ end }} + {{ end }} + +{{ else }} +
{{ .Content }}
    @@ -29,7 +42,9 @@

    {{.Title}}

    {{ end }}
-{{ partial "breadcrumbs.html" . }} {{ end }} +{{ partial "breadcrumbs.html" . }} +{{ end }} +{{ end }}