templates/front/theme1/bloc/render_bloc_default.html.twig line 1

Open in your IDE?
  1. {% if default_bloc is defined and default_bloc is not empty %}
          {% for bloc in default_bloc %}
              {% if is_mobile() and  bloc.mobile == true   %}
                  {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/bloc/bloc.html.twig',{
                      bloc: bloc,
                  }, with_context = false)}}
              {% endif %}
              
              {% if is_full_view() and is_mobile() == false and bloc.desktop == true %}
                  {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/bloc/bloc.html.twig',{
                      bloc: bloc,
                  }, with_context = false)}}
              {% endif %}
          {% endfor %}
    {% endif %}