diff --git a/_pages/staff.html b/_pages/staff.html
index 394a4a59a..b40eb072e 100644
--- a/_pages/staff.html
+++ b/_pages/staff.html
@@ -5,46 +5,43 @@
{% include head.html %}
{% include header.html %}
-
-
-
-
-
- {% assign team = site.data.staff | sort: 'netid' | sort: 'instructor', 'last' %}
- {% assign instructor = team | first %}
- {% assign sorted_team = team | shift | sort: 'name' | unshift: instructor %}
- {% assign photos = site.static_files | where_exp: "file", "file.path contains '/images/staffPhotos/'" %}
-
- {% for member in sorted_team %}
- {% assign value = forloop.index0 | modulo:3 %}
- {% if value == 0 %}
-
- {% endif %}
- {% assign photofile = photos | where_exp: "file", "file.path contains member.netid" | first %}
- {% assign photo = photofile.path | default: "/images/staffPhotos/default.jpg" %}
-
-
-
-
- {% if forloop.last or value == 2 %}
-
- {% endif %}
- {% endfor %}
-
-
-
-
+
+ Course Staff
+
+
+
+ Most questions should be asked on Piazza, so that answers can benefit the entire class.
+ Please acquaint yourself with our Piazza policy!
+
+
+ However, if you have a sensitive issue feel free to make a private note on Piazza, or email course staff directly.
+
+
+
+ {% assign team = site.data.staff | sort: 'netid' | sort: 'instructor', 'last' %}
+ {% assign instructor = team | first %}
+ {% assign sorted_team = team | shift | sort: 'name' | unshift: instructor %}
+ {% assign photos = site.static_files | where_exp: "file", "file.path contains '/images/staffPhotos/'" %}
+
+ {% for member in sorted_team %}
+ {% assign photofile = photos | where_exp: "file", "file.path contains member.netid" | first %}
+ {% assign photo = photofile.path | default: "/images/staffPhotos/default.jpg" %}
+
+ {% endfor %}
+
{% include footer.html %}
-