diff --git a/netbox/templates/base/layout.html b/netbox/templates/base/layout.html
index 6259de7d9..c6ad57ce6 100644
--- a/netbox/templates/base/layout.html
+++ b/netbox/templates/base/layout.html
@@ -105,6 +105,19 @@
+ {% if settings.BANNER_TOP %}
+
+ {{ settings.BANNER_TOP|safe }}
+
+ {% endif %}
+
+ {% if settings.MAINTENANCE_MODE %}
+
+
Maintenance Mode
+ NetBox is currently in maintenance mode. Functionality may be limited.
+
+ {% endif %}
+
{# Page header #}
{% block header %}
@@ -129,6 +142,12 @@
+ {% if settings.BANNER_BOTTOM %}
+
+ {{ settings.BANNER_BOTTOM|safe }}
+
+ {% endif %}
+
{# Page footer #}