Skip to content

Commit 4700db9

Browse files
authored
Merge pull request #815 from cmu-delphi/ds/leaderOrder
feat(leader order): reorder leader page
2 parents afd7cf2 + 677f953 commit 4700db9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

content/people/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,7 @@ people:
335335
affiliation: CMU/MLD and OVPR
336336
team:
337337
- leadership
338+
leaderOrder: 3
338339
- firstName: Jaemin
339340
lastName: Jo
340341
image: jaemin-jo-500x500-min.jpg
@@ -677,6 +678,7 @@ people:
677678
- blog
678679
- center-of-excellence
679680
description: is a Principal Investigator in the Delphi group and a Professor and Head of the Machine Learning Department at CMU. He is also a Google Fellow.
681+
leaderOrder: 2
680682
- firstName: Patti
681683
lastName: Rote
682684
image: patti-rote.jpg
@@ -843,6 +845,7 @@ people:
843845
- blog
844846
- center-of-excellence
845847
description: is a Principal Investigator in the Delphi group, and a Professor in the Department of Statistics & Data Science and the Machine Learning Department at CMU. He is also an Amazon Scholar.
848+
leaderOrder: 1
846849
- firstName: Will
847850
lastName: Townes
848851
image: will-townes.jpg

themes/delphi/layouts/partials/get-persons.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
{{- $fullPerson := (merge (dict "name" (printf "%s %s" .firstName .lastName) "img" $img "key" (.firstName | lower)) . ) -}}
99
{{- $full = $full | append $fullPerson -}}
1010
{{- end -}}
11-
{{- return (sort $full "lastName" "asc" "firstName" "asc") -}}
11+
{{- return (sort $full "leaderOrder" "asc" "lastName" "asc" "firstName" "asc") -}}

0 commit comments

Comments
 (0)