{% include '/partials/front-menu-cuenta.html.twig' %}
{{ tablero.nombre }}
{% for variante in tablero.variantes %}
{% if variante.activa == 1 %}
{% set break = false %}
{% set imagen = '' %}
{% for imagenPieza in variante.imagenesPieza %}
{% if imagenPieza.principal == 1 and not break %}
{% set imagen = imagenPieza.ruta~'thumb-'~imagenPieza.imagen %}
{% set break = true %}
{% endif %}
{% endfor %}