Skip to content

Commit

Permalink
Add seperate spans for title and company, and center align images for…
Browse files Browse the repository at this point in the history
… slideshow view

Signed-off-by: John Mertic <jmertic@linuxfoundation.org>
  • Loading branch information
jmertic committed Jul 26, 2023
1 parent 0434b5e commit 145e69d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions _includes/slidedeck.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
display: flex;
flex-wrap: wrap;
font: Calibri;
place-content: center;
}
div.member {
width: 130px;
text-align: center;
}
.name, .role, .title {
.name, .role, .title, .company {
display: block;
margin-top: 5px;
font-family: Calibri, sans-serif;
Expand Down Expand Up @@ -42,7 +43,8 @@
<span class="headshot"><img src="{{ committee_member.LogoURL }}"></span>
<span class="name">{{ committee_member.FirstName }} {{ committee_member.LastName }}</span>
<span class="role committee_member-role">{% if committee_member.Role != 'None' %}{{ committee_member.Role }}{% endif %}</span>
<span class="title">{{ committee_member.Title }} at {{ committee_member.Organization.Name }}</span>
<span class="title">{{ committee_member.Title }}</span>
<span class="company">{{ committee_member.Organization.Name }}</span>
</div>
{% endfor %}
</div>

0 comments on commit 145e69d

Please sign in to comment.