hugo-sr2/layouts/_partials/team.html

26 lines
822 B
HTML
Raw Normal View History

2026-01-10 13:42:14 +00:00
{{ range (where site.RegularPages "Section" "eq" "team").ByDate }}
<div class="team-member">
{{ $altName := .Params.name }}
{{ if .Param "photo" }}
{{ $photo := .Params.photo }}
{{ with resources.Get $photo }}
<img
class="team-member__photo"
src="{{ .RelPermalink }}"
width="{{ .Width }}"
alt="{{ $altName }}" />
{{ else }}
{{ errorf "Unable to find %s in assets directory" . }}
{{ end }}
{{ else }}
<div class="team-member__photo" alt="{{ $altName }}"></div>
{{ end }}
<div>
<strong class="team-member__name">{{ .Param "name" }}</strong>
<span class="team-member__education">{{ .Param "education" }}</span>
<span class="team-member__pronoun">{{ .Param "pronoun" }}</span>
</div>
<div class="team-member__role">{{ .Param "role" }}</div>
</div>
{{ end }}