src/WebBundle/Resources/views/Seo/robots.txt.twig line 1

Open in your IDE?
  1. {% if disallow is defined and disallow %}
  2.     User-agent: *
  3.     Disallow: /
  4. {% else %}
  5. User-Agent: *
  6. {% if list is defined %}
  7.     {% for row in list.disallow %}
  8. Disallow: {{ row }}
  9.     {% endfor %}
  10. {% endif %}
  11. {% if allows is defined %}
  12.     {% for row in allows %}
  13. Allow: {{ row }}
  14.     {% endfor %}
  15. {% endif %}
  16. Host: {{ host }}
  17. {% endif %}
  18. Sitemap: https://{{ host }}/sitemap.xml