Skip to content

Latest commit

 

History

History
145 lines (143 loc) · 7.26 KB

students.markdown

File metadata and controls

145 lines (143 loc) · 7.26 KB
layout image_header intro title headtitle permalink
page
Our Students
Students | Georgia Tech Visualization Lab
/students/

If you would like to be listed here, please get approval from your faculty advisor and add yourself by following these instructions.

{% assign sorted-students = site.students | sort: "name" | where_exp:"student", "student.graduation_year == undefined" %}

Current Students

{% for person in sorted-students %}
Picture of {{ person.name }}

{{ person.name }}

{{ person.degree_level }} {{ person.major }}


{% if person.website %} {% endif %} {% if person.email %} {% endif %} {% if person.linkedin %} {% endif %} {% if person.twitter %} {% endif %}
{% endfor %}

Alumni

{% assign filtered-students = site.students | where_exp:"student", "student.graduation_year != undefined" | sort: "graduation_year" | reverse %} {% assign grouped-students = filtered-students | group_by: "graduation_year" %} {% for student-group in grouped-students %} {% assign fall_alums = student-group.items | where_exp: "alum", "alum.graduation_semester contains 'Fall'" | sort: "name" | reverse %} {% assign summer_alums = student-group.items | where_exp: "alum", "alum.graduation_semester contains 'Summer'" | sort: "name" | reverse %} {% assign spring_alums = student-group.items | where_exp: "alum", "alum.graduation_semester contains 'Spring'" | sort: "name" | reverse %} {% assign sorted-students = fall_alums | concat: summer_alums | concat: spring_alums %} {% for person in sorted-students %}
Picture of {{ person.name }}

{{ person.name }}

{{ person.role }}


{% if person.website %} {% endif %} {% if person.email %} {% endif %} {% if person.linkedin %} {% endif %} {% if person.twitter %} {% endif %}
{% endfor %} {% endfor %}
<script> $('.filter a').click(e => { $('.filter a').removeClass('active-selection'); $(e.currentTarget).addClass('active-selection'); $('.mini-card-container').css('display', 'none'); if (e.currentTarget.id == "all") { $('.mini-card-container').css('display', 'block'); } else { $(`div[category = '${e.currentTarget.id}']`).css('display', 'block'); } if($(`div[category = '${e.currentTarget.id}'][type = 'curr-student']`).length == 0 && e.currentTarget.id != "all") { $('#curr-stud-header').css('display', 'none'); } else { $('#curr-stud-header').css('display', 'block'); }
    if($(`div[category = '${e.currentTarget.id}'][type = 'alumni']`).length == 0 && e.currentTarget.id != "all") {
        $('#alumni-header').css('display', 'none');
    } else {
        $('#alumni-header').css('display', 'block');
    }
});
</script>