<div class="row news_row">
<div class="col news_col">
{% if content.getLink() %}
{% set link = content.getLink() %}
<a href="{{ link.href }}"
{% if link.title is not empty %}title="{{ link.title }}"{% endif %}
{% if link.target is not empty %} target="{{ link.target }}"{% endif %}>
{{ content.getImage().getThumbnail().getHtml({
'imgAttributes': {
'class': 'img-fluid',
'alt': content.getCaption()
}
}) | raw }}
{% if content.getCaption() %}
<p class="text-center">{{ content.getCaption() }}</p>
{% endif %}
</a>
{% else %}
{{ content.getImage().getThumbnail().getHtml({
'imgAttributes': {
'class': 'img-fluid',
'alt': content.getCaption()
}
}) | raw }}
{% if content.getCaption() %}
<p class="text-center">{{ content.getCaption() }}</p>
{% endif %}
{% endif %}
</div>
</div>