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