templates/frontend/common/analytics.html.twig line 1

Open in your IDE?
  1. {% if app.environment != 'dev' %}
  2.     {% if app.request.cookies.has('googleAnalytics') and app.request.cookies.get('googleAnalytics') == 1 %}
  3.         {% include '@frontend/common/google_tag_manager_head.html.twig' %}
  4.     {% endif %}
  5.     {% if app.request.cookies.has('facebookPixel') and app.request.cookies.get('facebookPixel') == 1 %}
  6.         {% include '@frontend/common/facebook_pixel.html.twig' %}
  7.     {% endif %}
  8. {% endif %}