+ {{ partial "breadcrumbs.html" . }}
+
+ {{/* Check if this is the team page */}}
+ {{ if eq .File.BaseFileName "team" }}
+ {{- $team := .Site.Params.team }}
+ {{ with $team.title }}
+
+ {{ end }}
+ {{ with $team.description }}
+
{{ . }}
+ {{ end }}
+
+ {{ if $team.members }}
+
+ {{ range $team.members }}
+
+ {{ end }}
+
+ {{ end }}
+ {{ else if eq .File.BaseFileName "research" }}
+ {{/* Research page */}}
+ {{- $research := .Site.Params.team.research }}
+ {{ with $research.title }}
+
+ {{ end }}
+ {{ with $research.description }}
+
{{ . }}
+ {{ end }}
+
+ {{ if $research.projects }}
+
+ {{ range $research.projects }}
+
+ {{ end }}
+
+ {{ end }}
+ {{ else }}
+ {{/* Default content for non-team pages */}}
+
{{ .Title }}
+ {{ if .Params.Subtitle }}
+
{{ .Params.Subtitle }}
+ {{ end }}
+
+ {{ .Content }}
+
+ {{ end }}
+
+ {{ partial "shortcuts.html" . }}
+