{{ template "base.html" . }} {{ define "extrahead" }} {{ end }} {{ define "all_projects" }}
{{ with .OfficialProjects }} {{ end }}
{{ if .CurrentJamProjects }}

{{ template "jam_name" .CurrentJamSlug }}

These projects are submissions to the {{ template "jam_name" .CurrentJamSlug }}, which is happening right now! Learn more »

{{ range .CurrentJamProjects }} {{ template "project_card.html" projectcarddata . "" }} {{ end }}
See more »
{{ end }} {{ if .OfficialProjects }}

Official Projects

{{ range .OfficialProjects }} {{ template "project_card.html" projectcarddata . "" }} {{ end }}
See more »
{{ end }} {{ if .PersonalProjects }}

Personal Projects

Many community members have projects of their own. Want to join them? Create your own.

{{ range .PersonalProjects }} {{ template "project_card.html" projectcarddata . "" }} {{ end }}
See more »
{{ end }} {{ if .PreviousJamProjects }}

{{ template "jam_name" .PreviousJamSlug }}

The following projects were submissions to our most recent jam. Learn more »

{{ range .PreviousJamProjects }} {{ template "project_card.html" projectcarddata . "" }} {{ end }}
See more »
{{ end }}
{{ end }} {{ define "single_category" }} {{ if eq .Category "official" }}

Official Projects

{{ else if eq .Category "personal" }}

Personal Projects

Many community members have projects of their own. Want to join them? Create your own.

{{ else }} {{/* Here we are assuming everything else is a jam. */}}

{{ template "jam_name" .Category }}

The following projects were submissions to the {{ template "jam_name" .Category }}. Learn more »

{{ end }}
{{ if gt .Pagination.Total 1 }}
{{ template "pagination.html" .Pagination }}
{{ end }}
{{ range .PageProjects }} {{ template "project_card.html" projectcarddata . "" }} {{ end }}
{{ if gt .Pagination.Total 1 }}
{{ template "pagination.html" .Pagination }}
{{ end }}
{{ end }} {{ define "jam_name" }} {{- if eq . "2022" -}} 2022 Wheel Reinvention Jam {{- else if eq . "2023" -}} 2023 Wheel Reinvention Jam {{- else if eq . "visibility-2023" -}} 2023 Visibility Jam {{- else if eq . "learning-2024" -}} 2024 Learning Jam {{- else -}} ??? {{- end -}} {{ end }} {{ define "content" }} {{ if .AllProjects }} {{ template "all_projects" . }} {{ else }} {{ template "single_category" . }} {{ end }} {{ end }}