Skip to content

Commit

Permalink
handling missing names differently
Browse files Browse the repository at this point in the history
  • Loading branch information
DomBennett committed Dec 13, 2015
1 parent 3bff199 commit c44fe97
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions contributors/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ <h1>
<img src="{{ contributor.image }}" width="125" height="125" alt="{{ contributor.name }}">
</div>
<div class="unit two-thirds">
{% if contributor.name != 'None' %}
<b>{{ contributor.name }}</b>
{% endif %}
{% if contributor.affiliation != 'None' %}
<b>{{ contributor.name }}</b> ({{ contributor.affiliation }})<br>
({{ contributor.affiliation }})<br>
{% else %}
<b>{{ contributor.name }}</b><br>
<br>
{% endif %}
{% if contributor.email != 'None' %}
<a href="mailto:{{ contributor.email }}" style="margin-right:10px">
Expand Down

0 comments on commit c44fe97

Please sign in to comment.