Closes #15664: Restore usage of READTHEDOCS env variable

This commit is contained in:
Jeremy Stretch 2024-04-22 09:52:03 -04:00
parent b6e38b2ebe
commit ebe504c825
2 changed files with 3 additions and 2 deletions

View File

@ -2,8 +2,8 @@
{% block site_meta %} {% block site_meta %}
{{ super() }} {{ super() }}
{# Disable search indexing unless we're building for ReadTheDocs (see #10496) #} {# Disable search indexing unless we're building for ReadTheDocs #}
{% if page.canonical_url != 'https://docs.netbox.dev/' %} {% if not config.extra.readthedocs %}
<meta name="robots" content="noindex"> <meta name="robots" content="noindex">
{% endif %} {% endif %}
{% endblock %} {% endblock %}

View File

@ -42,6 +42,7 @@ plugins:
show_root_toc_entry: false show_root_toc_entry: false
show_source: false show_source: false
extra: extra:
readthedocs: !ENV READTHEDOCS
social: social:
- icon: fontawesome/brands/github - icon: fontawesome/brands/github
link: https://github.com/netbox-community/netbox link: https://github.com/netbox-community/netbox