{% set direction = "column" %} {% if bloc.nbColonnes > 1 %} {% set direction = "row" %} {% endif %} {% set animation = "" %} {% if bloc.animation != "" %} {% set animation = "data-aos=" ~ bloc.animation %} {% if bloc.animationDirection == "" %} {% set animation = animation %} {% else %} {% set animation = animation ~ "-" ~ bloc.animationDirection %} {% endif %} {% if bloc.animationDuree > 0 %} {% set animationDuree = bloc.animationDuree %} {% if bloc.animationDuree < 50 %} {% set animationDuree = 50 %} {% endif %} {% if bloc.animationDuree > 3000 %} {% set animationDuree = 3000 %} {% endif %} {% set animation = animation ~ " data-aos-duration=" ~ animationDuree %} {% endif %} {% endif %}