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

Added affiliations and websites

parent 924fdb21
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,8 @@ people: [
{
name: Mr. Joshua Borrow,
role: PhD Student,
href: "http://www.dur.ac.uk/joshua.borrow",
affil: "Durham",
},
{
name: Pr. Tom Theuns,
......
......@@ -20,14 +20,18 @@
<p>The following people are involved in SWIFT:</p>
<ul>
{% for person in people %}
{% if person.role %}
<li>{{ person.name }} | {{ person.role }}</li>
{% else %}
<li>{{ person.name }}</li>
{% endif %}
<li>
{% if person.href %}
<a href="{{ person.href }}">{{ person.name }}</a>
{% else %}
{{ person.name }}
{% endif %}
{% if person.role %} | {{ person.role }}{% endif %}
{% if person.affil %} | {{ person.affil }}{% endif %}
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
{% endblock %}
\ No newline at end of file
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment