[fix] use old system if there is no img_src

This commit is contained in:
Thomas Pointhuber 2016-04-21 15:13:26 +02:00
parent 63d68c8e0f
commit 1833a8b1b8
1 changed files with 5 additions and 1 deletions

View File

@ -13,12 +13,16 @@
</div>
{% endif %}
{% if result.img_src %}
<div class="container-fluid">
<div class="row">
{% if result.img_src %}<img src="{{ image_proxify(result.img_src) }}" alt="{{ result.title|striptags }}" title="{{ result.title|striptags }}" style="width: auto; max-height: 60px; min-height: 60px;" class="col-xs-2 col-sm-4 col-md-4 result-content">{% endif %}
<img src="{{ image_proxify(result.img_src) }}" alt="{{ result.title|striptags }}" title="{{ result.title|striptags }}" style="width: auto; max-height: 60px; min-height: 60px;" class="col-xs-2 col-sm-4 col-md-4 result-content">
{% if result.content %}<p class="result-content col-xs-8 col-sm-8 col-md-8">{{ result.content|safe }}</p>{% endif %}
</div>
</div>
{% else %}
{% if result.content %}<p class="result-content">{{ result.content|safe }}</p>{% endif %}
{% endif %}
{% if rtl %}
{{ result_footer_rtl(result) }}