Skip to content
Snippets Groups Projects
Commit f82a9526 authored by Josh Borrow's avatar Josh Borrow
Browse files

Merge branch 'expertise_for_people' into 'master'

Added a field for people's expertise on the contact page.

See merge request !6
parents 5492158f c79ff99b
No related branches found
No related tags found
1 merge request!6Added a field for people's expertise on the contact page.
...@@ -8,21 +8,22 @@ people: [ ...@@ -8,21 +8,22 @@ people: [
{ {
name: Dr. Pedro Gonnet, name: Dr. Pedro Gonnet,
role: Project PI (CompSci), role: Project PI (CompSci),
affil: "School of Engineering & Computer Science, Durham University" affil: "ECS, Durham University"
}, },
{ {
name: Dr. Aidan Chalk, name: Dr. Aidan Chalk,
role: "Developer (Parallelization, GPU)", role: "Developer",
affil: "STFC Daresbury Laboratory, Warrington" affil: "STFC Daresbury Laboratory"
}, },
{ {
name: Mr. James S. Willis, name: Mr. James S. Willis,
role: "Developer (Vectorization, MPI)", role: "Developer",
affil: "ICC, Durham University", affil: "ICC, Durham University",
expertise: "Parallelization, Vectorization"
}, },
{ {
name: Dr. Peter Draper, name: Dr. Peter Draper,
role: "Developer (Parallelization, MPI, domain decomposition)", role: "Developer",
affil: "ICC, Durham University", affil: "ICC, Durham University",
}, },
{ {
...@@ -33,8 +34,8 @@ people: [ ...@@ -33,8 +34,8 @@ people: [
}, },
{ {
name: Dr. Bert Vandenbroucke, name: Dr. Bert Vandenbroucke,
role: "Developer (Astrophysics, Hydrodynamics)", role: "Developer",
affil: "School of Physics & Astronomy, Univeristy of St Andrews", affil: "University of St Andrews",
href: "http://www-star.st-and.ac.uk/~bv7/" href: "http://www-star.st-and.ac.uk/~bv7/"
}, },
{ {
......
...@@ -25,9 +25,12 @@ ...@@ -25,9 +25,12 @@
<a href="{{ person.href }}">{{ person.name }}</a> <a href="{{ person.href }}">{{ person.name }}</a>
{% else %} {% else %}
{{ person.name }} {{ person.name }}
{% endif %} {% endif %}
{% if person.role %} | {{ person.role }}{% endif %} {% if person.role %} | {{ person.role }}{% endif %}
{% if person.affil %} | {{ person.affil }}{% endif %} <ul>
<li> {% if person.affil %} {{ person.affil }}{% endif %} </li>
{% if person.expertise %}<li> {{ person.expertise }}</li>{% endif %}
</ul>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment