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

Official Projects

These projects are boop boop hahahaa:

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

Personal Projects

Many community members have projects of their own. Here's a few:

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

JAM! NOWS!

wowowowow

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

JAM! THENS!

nonononoono

{{ range .PreviousJamProjects }} {{ template "project_card.html" projectcarddata . "" }} {{ end }}
See more »
{{ end }}
{{ end }} {{ define "single_category" }}
{{ template "pagination.html" .Pagination }}
{{ range .PageProjects }} {{ template "project_card.html" projectcarddata . "" }} {{ end }}
{{ template "pagination.html" .Pagination }}
{{ end }} {{ define "content" }} {{ if .AllProjects }} {{ template "all_projects" . }} {{ else }} {{ template "single_category" . }} {{ end }} {{ end }}