mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 19:22:53 -06:00
10 lines
247 B
HTML
10 lines
247 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block site_meta %}
|
|
{{ super() }}
|
|
{# Disable search indexing unless we're building for ReadTheDocs #}
|
|
{% if not config.extra.readthedocs %}
|
|
<meta name="robots" content="noindex">
|
|
{% endif %}
|
|
{% endblock %}
|