{% blocktrans trimmed %}
Robots are programs that automatically traverse web sites.
Web site owners can use a robots.txt file to give
instructions about their site.
{% endblocktrans %}
{% if mode == 'allow' %}
{% trans "Web Robots are currently allowed." %}
{% endif %}
{% if mode == 'disallow' %}
{% trans "Web Robots are currently not allowed." %}
{% endif %}
{% if mode == 'customize' or mode == 'disallow' %}
{% trans "Contents of robots.txt file:" %}
{{ robots_txt }}
{% endif %}
{% if mode == 'customize' or mode == 'allow' %}