mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-15 11:42:52 -06:00
10 lines
280 B
HTML
10 lines
280 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block site_meta %}
|
|
{{ super() }}
|
|
{# Disable search indexing unless we're building for ReadTheDocs (see #10496) #}
|
|
{% if page.canonical_url != 'https://docs.netbox.dev/' %}
|
|
<meta name="robots" content="noindex">
|
|
{% endif %}
|
|
{% endblock %}
|