main.html 280 B

123456789
  1. {% extends "base.html" %}
  2. {% block site_meta %}
  3. {{ super() }}
  4. {# Disable search indexing unless we're building for ReadTheDocs (see #10496) #}
  5. {% if page.canonical_url != 'https://docs.netbox.dev/' %}
  6. <meta name="robots" content="noindex">
  7. {% endif %}
  8. {% endblock %}