Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
afrendeiro committed Dec 18, 2024
1 parent 61ea12d commit 3cc5eba
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions templates/team.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ <h3>{{ title }}</h3>
<div class="card text-center col-sm-6 col-md-3 mb-3">
<div class="card-body">
<h5 class="card-title">{{ member.name }}</h5>
<img class="card-img-top" src="{{ member.photo }}" alt="{{ member.name }}" style="width: 90%">
<img
class="card-img-top"
tabindex="0"
src="{{ member.photo }}"
alt="A photo of {{ member.name }} inside a CeMM bubble."
style="width: 90%">
<!-- <img src="{{ member.photo }}" alt="{{ member.name }}" > -->
<p class="card-text">{{ member.role }}
<br>
Expand Down Expand Up @@ -53,7 +58,12 @@ <h3>Alumni</h3>
<h5 class="card-title">{{ alumnus.name }}</h5>
<br>
<!-- class="img-responsive" -->
<img class="card-img-top" src="{{ alumnus.photo }}" alt="{{ alumnus.name }}" style="width: 90%">
<img
class="card-img-top"
tabindex="0"
src="{{ alumnus.photo }}"
alt="A photo of {{ alumnus.name }} inside a CeMM bubble."
style="width: 90%">
<!-- <img src="{{ alumnus.photo }}" alt="{{ alumnus.name }}" > -->
<p class="card-text">{{ alumnus.description }}</p>
</div>
Expand Down

0 comments on commit 3cc5eba

Please sign in to comment.