diff --git a/data/contact.yaml b/data/contact.yaml
index 95b885dae99beb1d4703801c9041001a3cb2e72b..0be18eb97530428e8580e330b7610a6b38fdcd91 100644
--- a/data/contact.yaml
+++ b/data/contact.yaml
@@ -8,21 +8,22 @@ people: [
   {
     name: Dr. Pedro Gonnet,
     role: Project PI (CompSci),
-    affil: "School of Engineering & Computer Science, Durham University"
+    affil: "ECS, Durham University"
   },
   {
     name: Dr. Aidan Chalk,
-    role: "Developer (Parallelization, GPU)",
-    affil: "STFC Daresbury Laboratory, Warrington"
+    role: "Developer",
+    affil: "STFC Daresbury Laboratory"
   },
   {
     name: Mr. James S. Willis,
-    role: "Developer (Vectorization, MPI)",
+    role: "Developer",
     affil: "ICC, Durham University",
+    expertise: "Parallelization, Vectorization"
   },
   {
     name: Dr. Peter Draper,
-    role: "Developer (Parallelization, MPI, domain decomposition)",
+    role: "Developer",
     affil: "ICC, Durham University",
   },
   {
@@ -33,8 +34,8 @@ people: [
   },
   {
     name: Dr. Bert Vandenbroucke,
-    role: "Developer (Astrophysics, Hydrodynamics)",
-    affil: "School of Physics & Astronomy, Univeristy of St Andrews",
+    role: "Developer",
+    affil: "University of St Andrews",
     href: "http://www-star.st-and.ac.uk/~bv7/"
   },
   {
diff --git a/templates/contact.html b/templates/contact.html
index 87325442c11b398129f687ce00f6d40671e39d1a..529b4c6f0b7faa4b83548d8779446528e258bfb5 100644
--- a/templates/contact.html
+++ b/templates/contact.html
@@ -25,9 +25,12 @@
                         <a href="{{ person.href }}">{{ person.name }}</a>
                     {% else %}
                         {{ person.name }}
-                    {% endif %}
-                    {% if person.role %} | {{ person.role }}{% endif %}
-                    {% if person.affil %} | {{ person.affil }}{% endif %}
+		    {% endif %}
+		    {% if person.role %} | {{ person.role }}{% endif %}
+		    <ul>	
+		      <li> {% if person.affil %} {{ person.affil }}{% endif %} </li>
+		      {% if person.expertise %}<li> {{ person.expertise }}</li>{% endif %}
+		    </ul>
                 </li>
             {% endfor %}
             </ul>