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 %}
  2.       {% for bloc in default_bloc %}
  3.           {% if is_mobile() and  bloc.mobile == true   %}
  4.               {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/bloc/bloc.html.twig',{
  5.                   bloc: bloc,
  6.               }, with_context = false)}}
  7.           {% endif %}
  8.           
  9.           {% if is_full_view() and is_mobile() == false and bloc.desktop == true %}
  10.               {{ include ('front/'~ app.request.server.get('APP_THEME') ~'/bloc/bloc.html.twig',{
  11.                   bloc: bloc,
  12.               }, with_context = false)}}
  13.           {% endif %}
  14.       {% endfor %}
  15. {% endif %}