{% set image_alias = image_alias|default( "col3" ) %}
{% set content_name = ibexa_content_name( content ) %}
{{ ibexa_render_field(
content,
"image",
{
"parameters": {"alias": image_alias, "alt": content_name}
}
) }}
{{ ibexa_render_field( content, 'headline' ) }}
{{ ibexa_render_field( content, 'content' ) }}
{% endblock %}
{% block ezobjectrelationlist_field %}
{% apply spaceless %}
{% if not ibexa_field_is_empty( content, field ) %}
{% for contentId in field.value.destinationContentIds %}
{{ render( controller( "ibexa_content:viewAction", {'contentId': contentId, 'viewType': 'embed', 'noLayout': 0, "params": { "is_first": loop.first, "link": ibexa_field_value( content, 'button_url' ) }} ) ) }}
{% endfor %}
{% endif %}
{% endapply %}
{% endblock %}