Skip to content

Commit

Permalink
person card tweak pn
Browse files Browse the repository at this point in the history
  • Loading branch information
ericrobskyhuntley committed Feb 28, 2024
1 parent b874ca1 commit e3f3e3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Person.astro
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ const images = import.meta.glob<{ default: ImageMetadata }>('/src/assets/*.{jpeg
</figure>
</div>}
<div class="tile is-child">
<p class="title is-4 has-text-white">{person.name}{person.creds && ", ".concat(person.creds.join(", "))} {person.pronouns && <span class="has-text-weight-light">({person.pronouns})</span>}</p>
<p class="title is-4 has-text-white">{person.name}{person.creds && ", ".concat(person.creds.join(", "))}</p>
<p class="subtitle is-4 has-text-white">{person.roles && person.roles.join(", ")}</p>
<p class="has-text-white">{person.pronouns}</p>
<p>{person.email && <a href={"mailto:".concat(person.email)} class="has-text-white">{person.email}</a>}</p>
</div>
</div>
Expand Down

0 comments on commit e3f3e3d

Please sign in to comment.