main.html 255 B

123456789
  1. {% extends "base.html" %}
  2. {% block site_meta %}
  3. {{ super() }}
  4. {# Disable search indexing unless we're building for public consumption #}
  5. {% if not config.extra.build_public %}
  6. <meta name="robots" content="noindex">
  7. {% endif %}
  8. {% endblock %}