Skip to content

Commit

Permalink
Remove extra line break when there is no Role
Browse files Browse the repository at this point in the history
Signed-off-by: John Mertic <[email protected]>
  • Loading branch information
jmertic committed Oct 18, 2023
1 parent 163131f commit 8f260a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/oldsite.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</div>
<div class="single-person-title">
<h3>{{ committee_member.FirstName }} {{ committee_member.LastName }}</h3>
<h5><span class="committee_member-role">{% if committee_member.Role != 'None' %}{{ committee_member.Role }}<br></span>{% endif %}{{ committee_member.Title }} at {{ committee_member.Organization.Name }}</h5>
<h5>{% if committee_member.Role and committee_member.Role != 'None' %}<span class="committee_member-role">{{ committee_member.Role }}<br></span>{% endif %}{{ committee_member.Title }} at {{ committee_member.Organization.Name }}</h5>
</div>
</div> <!-- End Single person Header -->
<div class="single-person-description">
Expand Down

0 comments on commit 8f260a4

Please sign in to comment.