Skip to content

Commit

Permalink
Merge branch 'main' into share-config
Browse files Browse the repository at this point in the history
  • Loading branch information
SallyMcGrath authored Dec 6, 2024
2 parents 597aebe + 598f4d2 commit 7f82d6b
Show file tree
Hide file tree
Showing 11 changed files with 80 additions and 4 deletions.
4 changes: 3 additions & 1 deletion common-theme/layouts/_default/backlog.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{{ define "main" }}
{{ $currentPath := .Page.RelPermalink }}
{{ $backlog_filter := .Page.Params.backlog_filter }}
{{ $repos := .Page.Params.backlog }}
{{ if not (reflect.IsSlice $repos) }}
Expand All @@ -14,6 +15,7 @@
*/}}
{{ range $repos }}
{{ $issueBlocks := partial "block/issues-list-as-blocks.html" (dict "backlog" . "backlog_filter" $backlog_filter) }}
{{ $repo := . }}
{{ range $issueBlocks }}
<div class="c-alert" role="alert" hidden>
<span class="alert__message"></span>
Expand All @@ -26,7 +28,7 @@
{{ .name }}
<a class="c-issue__link" href="{{ .src }}">🔗</a>
<a
href="https://curriculum.codeyourfuture.io/api/clone?state={{ dict "issue" .number "module" .Page.Params.backlog "sprint" .Page.Params.backlog_filter "prevURL" (urls.AbsLangURL .Page.RelPermalink) | jsonify }}"
href="https://curriculum.codeyourfuture.io/api/clone?state={{ dict "issue" .number "module" $repo "sprint" $backlog_filter "prevURL" (urls.AbsLangURL $currentPath) | jsonify }}"
class="e-button"
data-props="{{ .Page.RelPermalink }}">
Clone
Expand Down
7 changes: 7 additions & 0 deletions org-cyf-itp/content/data-flows/project/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
+++
title = 'Product'
description = 'The CYF TV Show Project: build a show browsing site in an asynchronous pair'
layout = 'product'
emoji= '🎁'
menu_level = ['module']
+++
8 changes: 8 additions & 0 deletions org-cyf-itp/content/data-flows/project/backlog/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
+++
title = 'Backlog'
description = 'All the features that we want to implement in this project'
layout = 'subdir'
emoji= '🥞'
menu_level = ['product']
weight=2
+++
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
+++
title = 'backlog for sprint 1'
layout = 'backlog'
emoji= '🏷️'
menu_level = ['subdir']
weight = 1
backlog= 'Project-TV-Show'
backlog_filter= '📅 Sprint 1'
+++
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
+++
title = 'backlog for sprint 2'
layout = 'backlog'
emoji= '🏷️'
menu_level = ['subdir']
weight = 2
backlog= 'Project-TV-Show'
backlog_filter= '📅 Sprint 2'
+++
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
+++
title = 'backlog for sprint 3'
layout = 'backlog'
emoji= '🏷️'
menu_level = ['subdir']
weight = 3
backlog= 'Project-TV-Show'
backlog_filter= '📅 Sprint 3'
+++
14 changes: 14 additions & 0 deletions org-cyf-itp/content/data-flows/project/prep/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
+++
title = 'Prep'
description = 'How will you approach this project?'
layout = 'prep'
menu_level = ['product']
emoji= '🧑🏿‍💻'
weight = 1
[[blocks]]
name="Planning and organising your project"
src="https://github.com/CodeYourFuture/Project-TV-Show/readme"
[[blocks]]
name="Setting up"
src="https://github.com/CodeYourFuture/Project-TV-Show/issues/4"
+++
18 changes: 18 additions & 0 deletions org-cyf-itp/content/data-flows/project/success/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
+++
title = "Success"
description = "How do we know if our product is a success?"
layout = "success"
emoji= ""
menu_level = [ "product" ]
weight = 11
[[objectives]]
1= "Your product is deployed on a public URL"
2= "You have delivered features every sprint"
3="Your features meet the acceptance criteria"
4="At least one other person has contributed to the project"
5="It works"
+++

{{<note type="tip" title="In short">}}
You have to build it together, it has to work, and you have to show us.
{{</note>}}
2 changes: 1 addition & 1 deletion org-cyf-itp/content/data-flows/sprints/1/backlog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ layout = 'backlog'
emoji= '🏷️'
menu_level = ['sprint']
weight = 2
backlog= 'Module-Data-Flows'
backlog= ['Module-Data-Flows', 'Project-TV-Show']
backlog_filter='📅 Sprint 1'
+++
2 changes: 1 addition & 1 deletion org-cyf-itp/content/data-flows/sprints/2/backlog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ layout = 'backlog'
emoji= '🏷️'
menu_level = ['sprint']
weight = 2
backlog= 'Module-Data-Flows'
backlog= ['Module-Data-Flows', 'Project-TV-Show']
backlog_filter='📅 Sprint 2'
+++
2 changes: 1 addition & 1 deletion org-cyf-itp/content/data-flows/sprints/3/backlog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ layout = 'backlog'
emoji= '🏷️'
menu_level = ['sprint']
weight = 2
backlog= 'Module-Data-Flows'
backlog= ['Module-Data-Flows', 'Project-TV-Show']
backlog_filter='📅 Sprint 3'
+++

0 comments on commit 7f82d6b

Please sign in to comment.