templates/components/seo.partial.twig line 1

Open in your IDE?
  1. {% set isTop = type == 'top' %}
  2. {% set text = isTop ? seo_top() : seo_footer() %}
  3. {% set crawlerDetect = app.request.headers.get('X-Detected-Crawler') == 'google' or app.request.host matches '/^g[a-z0-9]+\./'  %}
  4. {%- if text and crawlerDetect -%}
  5.     <noindex>
  6.         <div class="pages-static">{{ text|raw }}</div>
  7.     </noindex>
  8. {%- endif -%}