+ {{ $thumbnail := .thumbnail | default "images/person.png" }}
+ {{ $image_settings := site.Params.people.image_settings | default "500x500 webp q90 smart" }}
+ {{ $image_resource := resources.Get $thumbnail }}
+ {{ if $image_resource }}
+ {{ $retouched := $image_resource.Fill $image_settings }}
+ {{ $thumbnail = $retouched.RelPermalink }}
+ {{ end }}
+

+
+
{{ .name | title }}
+
{{ .position | i18n | title }}
+ {{ with .research_areas }}
+
+ {{ $lastIndex := sub (len .) 1 }}
+ {{ range $index, $area := . }}
+ {{ $area | title }}{{ if ne $index $lastIndex }}, {{ end }}
+ {{ end }}
+
+ {{ end }}
+
+ {{ with .email }}
+
+
+
+ {{ end }}
+ {{ with .linkedin }}
+
+
+
+ {{ end }}
+ {{ with .github }}
+
+
+
+ {{ end }}
+
+