Skip to content
Snippets Groups Projects
Commit 0bb039af authored by Jan Graichen's avatar Jan Graichen :construction_site:
Browse files

Disallow search engine indexing

The documentation is currently public, but we do not want it to appear
in public searches (yet).
parent a5820ee9
No related branches found
No related tags found
No related merge requests found
......@@ -5,3 +5,4 @@ package-lock.json
Pipfile.lock
public/
site/
overrides/
User-agent: *
Disallow: /
......@@ -30,6 +30,7 @@ theme:
- search.highlight
- search.share
- search.suggest
custom_dir: overrides
extra_css:
- stylesheets/extra.css
......
{# vim: ft=jinja-html #}
{% extends "base.html" %}
{% block extrahead %}
{{ super() }}
<meta name="robots" content="noindex,noarchive,nofollow" />
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment