{% load static %} {% load i18n %} {% load thumbnail %} {% load absurl %}
  • {% ifequal item.content_type.model "fragment" %} {% with fragment=item.content_object %}
    {% with image=fragment.image.info.image_file %} {% include "partial/fragment_only.html" %} {% endwith %}

    {{ fragment.title }}

    {{ item.description }}

    {% endwith %} {% else %} {% with img=item.content_object %}
    {% with img.info.image_file as image %} {% if image %} {% if image|is_portrait %} {% thumbnail image "x225" format="PNG" crop="center" as im %} {% empty %} {% endthumbnail %} {% else %} {% thumbnail image "225" format="PNG" crop="center" as im %} {% empty %} {% endthumbnail %} {% endif %} {% else %} {% endif %} {% endwith %}

    {{ img.metadata.titre|default:_("No title") }}

    {{ item.description }}

    {% endwith %} {% endifequal %}