Skip to content

Commit

Permalink
update css for smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
ceryslewis committed Feb 20, 2024
1 parent 8ce6b92 commit f069a4c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions modified-templates/team.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,13 @@ <h3>Speakers</h3>
<div id="alumni">
<h3>Alumni</h3>
{% for article in articles if 'alumni' in article.tags %}
{% if article.photo != '' %}
<div class="alumni_photo">
<img src="/reconnect/images/team/{{ article.photo }}.{{ article.photo_ext }}" alt="{{ article.title }}" class="fluid-img" />
</div>
{% endif %}
<div class="alumni_text{% if article.photo != '' %} img{% endif%}"><a href="/reconnect/{{ article.url }}"><h4>{{ article.title }}</h4></a>{{ article.summary }}</div>
<a href="/reconnect/{{ article.url }}"><h4>{{ article.title }}</h4></a>
{% if article.photo != '' %}
<div class="alumni_photo">
<img src="/reconnect/images/team/{{ article.photo }}.{{ article.photo_ext }}" alt="{{ article.title }}" class="fluid-img" />
</div>
{% endif %}
<div class="alumni_text{% if article.photo != '' %} img{% endif%}">{{ article.summary }}</div>
<div class="clearfix"><!-- --></div>
{% endfor %}
</div>
Expand Down

0 comments on commit f069a4c

Please sign in to comment.