diff --git a/_layouts/faculty.html b/_layouts/faculty.html
index 04f87f8d..c079c60a 100644
--- a/_layouts/faculty.html
+++ b/_layouts/faculty.html
@@ -8,34 +8,34 @@
-{% for person in site.data.faculty %}
+{% for person in site.data.profiles %}
-
+
-
{{ person.name }}
+
{{ person['First Name'] }} {{ person['Last Name'] }}
{{ person.title }}
-
{{ person.bio | markdownify }}
+
{{ person['Bio'] | markdownify }}
- {% if person.room %}-
- location_city {{ person.building }}{% if person.room %} {{ person.room }}{% endif %}
+ {% if person['Office'] %}
-
+ location_city {{ person['Building '] }}{% if person['Office'] %} {{ person['Office'] }}{% endif %}
{% endif %}
- {% if person.email %}-
- email {{ person.email }}
+ {% if person['Web Email'] %}
-
+ email {{ person['Web Email'] }}
{% endif %}
- {% if person.phone %}{% if person.phone != "" %}-
- phone
- {% if person.phone.size == 10 %}
- +1 ({{ person.phone | slice: 0, 3 }}) {{ person.phone | slice: 3, 3 }}.{{ person.phone | slice: 6, 4 }}
+ {% if person['Phone'] %}{% if person['Phone'] != "" %}
-
+ phone
+ {% if person['Phone'].size == 10 %}
+ +1 ({{ person['Phone'] | slice: 0, 3 }}) {{ person['Phone'] | slice: 3, 3 }}.{{ person['Phone'] | slice: 6, 4 }}
{% elsif person.phone.size == 11 %}
- +1 ({{ person.phone | slice: 1, 3 }}) {{ person.phone | slice: 4, 3 }}.{{ person.phone | slice: 7, 4 }}
+ +1 ({{ person['Phone'] | slice: 1, 3 }}) {{ person['Phone'] | slice: 4, 3 }}.{{ person['Phone'] | slice: 7, 4 }}
{% else %}
- {{ person.phone }}
+ {{ person['Phone'] }}
{% endif %}
{% endif %}{% endif %}
- {% if person.website %}{% if person.website != "" %}-
- link {{ person.website }}
-
{% endif %}{% endif %}
+ {% if person['Website'] %}{% if person['Website'] != "Website" %}{% if person['Website'] != "" %}-
+ link {{ person['Website'] }}
+
{% endif %}{% endif %}{% endif %}