{% block title %}Home{% endblock %} - {{ settings.BRANDING_TITLE }}
{% include 'inc/media.html' %}
{% block extra_styles %}{% endblock %}
{% include 'inc/nav_menu.html' %}
{% if request.user.is_authenticated or not "HIDE_RESTRICTED_UI"|settings_or_config %}
{% if "BANNER_TOP"|settings_or_config %}
{{ "BANNER_TOP"|settings_or_config|safe }}
{% endif %}
{% endif %}
{% if settings.MAINTENANCE_MODE %}
Maintenance Mode
Nautobot is currently in maintenance mode. Functionality may be limited.
{% endif %}
{% plugin_banners %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% block header %}{% endblock header %}
{% block content %}{% endblock content %}
{% if request.user.is_authenticated or not "HIDE_RESTRICTED_UI"|settings_or_config %}
{% if "BANNER_BOTTOM"|settings_or_config %}
{{ "BANNER_BOTTOM"|settings_or_config|safe }}
{% endif %}
{% endif %}
{% include 'modals/modal_theme.html' with name='theme'%}
{% include 'inc/footer.html' %}
{% include 'inc/javascript.html' %}
{% block javascript %}{% endblock %}