Skip to content

Commit ad35552

Browse files
committed
order alphabetically, gallery switch
1 parent 6b9f647 commit ad35552

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_layouts/people_layout.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,12 @@ <h4 class='page-header name-header'>{{ person.name }}</h4>
154154
<h3 class='page-header section-header'>Alumni</h3>
155155
<!-- do alumni now -->
156156
<div class='row'>
157-
{% assign alumni = site.people | where:'role', 'Alumni' | sort:'seniority' %} <!-- select from the templates for alumni -->
157+
{% assign alumni = site.people | where:'role', 'Alumni' | sort:'name' %} <!-- select from the templates for alumni -->
158158
{% for person in alumni %} <!-- iterate through the matching alumni -->
159159
<div class="col-xs-6 col-sm-3">
160160
<h4 class='page-header name-header'>{{ person.name }}</h4>
161161
<div class="thumbnail">
162-
<img src="{{site.baseurl}}/img/bio_img/{{person.photo}}" style='height:100%; width:200px; object-fit: cover;'/>
162+
<img src="{{site.baseurl}}/img/bio_img/{{person.photo}}" style='width:100%; height:200px; object-fit: cover;'/>
163163
</div>
164164
{% if person.website %}
165165
<a href="{{person.website}}">Website</a> |

0 commit comments

Comments
 (0)