<img src="{{ image_src | relative_url }}" alt="{{ update.image_alt | default: update.title }}">
{% if update.caption %}
<p class="update-entry__caption">{{ update.caption }}</p>
{% endif %}
</div>
{% endif %}
<div class="update-entry__body">
<h3 class="update-entry__title">{{ update.title }}</h3>
<p class="update-entry__meta">
{% if update.display_date %}{{ update.display_date }}{% else %}{{ update.date | date: "%B %-d, %Y" }}{% endif %}{% if update.location %} | {{ update.location }}{% endif %}
</p>
<div class="update-entry__content">
{{ update.content | markdownify }}
</div>
{% if update.more_url %}
<p class="update-entry__link"><a href="{{ update.more_url }}">{{ update.more_label | default: "More information" }}</a></p>
{% endif %}
</div>
{% endfor %}