Skip to content

Latest commit

 

History

History
79 lines (71 loc) · 2.36 KB

alumni.md

File metadata and controls

79 lines (71 loc) · 2.36 KB
layout title order
default
Alumni
2

Alumni

Missing from this list? New position? Contact Andrew Zhu for help.

2020's

{% for person in site.data.alumni %} {% if 2020 <= person.year and person.year <= 2029 %} {% include alumnus.html name=person.name url=person.url year=person.year degree=person.degree current=person.current %} {% endif %} {% endfor %}

2010's

{% for person in site.data.alumni %} {% if 2010 <= person.year and person.year <= 2019 %} {% include alumnus.html name=person.name url=person.url year=person.year degree=person.degree current=person.current %} {% endif %} {% endfor %}

2000's

{% for person in site.data.alumni %} {% if 2000 <= person.year and person.year <= 2009 %} {% include alumnus.html name=person.name url=person.url year=person.year degree=person.degree current=person.current %} {% endif %} {% endfor %}

1990's

{% for person in site.data.alumni %} {% if 1990 <= person.year and person.year <= 1999 %} {% include alumnus.html name=person.name url=person.url year=person.year degree=person.degree current=person.current %} {% endif %} {% endfor %}

1980's

{% for person in site.data.alumni %} {% if 1980 <= person.year and person.year <= 1989 %} {% include alumnus.html name=person.name url=person.url year=person.year degree=person.degree current=person.current %} {% endif %} {% endfor %}

1970's

{% for person in site.data.alumni %} {% if 1970 <= person.year and person.year <= 1979 %} {% include alumnus.html name=person.name url=person.url year=person.year degree=person.degree current=person.current %} {% endif %} {% endfor %}

1960's

{% for person in site.data.alumni %} {% if 1960 <= person.year and person.year <= 1969 %} {% include alumnus.html name=person.name url=person.url year=person.year degree=person.degree current=person.current %} {% endif %} {% endfor %}

1950's

{% for person in site.data.alumni %} {% if 1950 <= person.year and person.year <= 1959 %} {% include alumnus.html name=person.name url=person.url year=person.year degree=person.degree current=person.current %} {% endif %} {% endfor %}