blob: 5847a40ad366500d89c9e25955754731df1e3ce7 [file] [log] [blame]
{% load wagtailimages_tags %}
<div class="{{self.custom_class}}">
{% if self.redirect_url %}
<a href="{{self.redirect_url}}">
{% image self.image original as tmp_photo %}
<img src="{{tmp_photo.url}}" style="width:{{self.width}};height:{{self.height}}" alt="image" class="img-fluid"/>
{% if self.caption %}
<div class="card card-body bg-light text-center">
<figcaption class="text-center">{{ self.caption }}</figcaption>
</div>
{% endif %}
</a>
{% else %}
{% image self.image original as tmp_photo %}
<img src="{{tmp_photo.url}}" style="width:{{self.width}};height:{{self.height}};" alt="image" class="img-fluid"/>
{% if self.caption %}
<div class="card card-body bg-light text-center">
<figcaption class="text-center">{{ self.caption }}</figcaption>
</div>
{% endif %}
{% endif %}
</div>