8 lines
333 B
Twig
8 lines
333 B
Twig
<div style="grid-column: span 2; grid-row: span 4;">
|
|
{% if tile.image %}
|
|
<img src="{{ tile.image.externalPublicUrl }}" style="width: 100%; height: 100%; object-fit: cover;">
|
|
{% endif %}
|
|
</div>
|
|
{% for tile in tile.tiles %}
|
|
{{ include('result/tiles/' ~ tile|twig_name ~ '.html.twig', { tile: tile }) }}
|
|
{% endfor %} |