templates/theme/default/partials/bloc_render.html.twig line 1

Open in your IDE?
  1. {% for bloc in blocs.block %}
  2. {% if is_mobile() and bloc.mobile == true %}
  3. {{ include ('theme/'~ app.request.server.get('APP_THEME') ~'/component-blocks/generic-block.html.twig',{
  4. bloc: bloc,
  5. }, with_context = false)}}
  6. {% endif %}
  7. {% if is_full_view() and is_mobile() == false and bloc.desktop == true %}
  8. {{ include ('theme/'~ app.request.server.get('APP_THEME') ~'/component-blocks/generic-block.html.twig',{
  9. bloc: bloc,
  10. }, with_context = false)}}
  11. {% endif %}
  12. {% endfor %}