templates/components/seo_text.html.twig line 1

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