diff --git a/docs/operations/runbooks/downtime_incident_management.md b/docs/operations/runbooks/downtime_incident_management.md
index 4aa884e9d..8ace9fa11 100644
--- a/docs/operations/runbooks/downtime_incident_management.md
+++ b/docs/operations/runbooks/downtime_incident_management.md
@@ -16,6 +16,8 @@ The following set of rules should be followed while an incident is in progress.
- If downtime occurs outside of working hours, team members who are off for the day may still be pinged and called but are not required to join if unavailable to do so.
- Uncomment the [banner on get.gov](https://github.com/cisagov/get.gov/blob/0365d3d34b041cc9353497b2b5f81b6ab7fe75a9/_includes/header.html#L9), so it is transparent to users that we know about the issue on manage.get.gov.
- Designers or Developers should be able to make this change; if designers are online and can help with this task, that will allow developers to focus on fixing the bug.
+- Uncomment the [banner on manage.get.gov's base template](https://github.com/cisagov/manage.get.gov/blob/main/src/registrar/templates/base.html#L78).
+ - Designers or Developers should be able to make this change; if designers are online and can help with this task, that will allow developers to focus on fixing the bug.
- If the issue persists for three hours or more, follow the [instructions for enabling/disabling a redirect to get.gov](https://docs.google.com/document/d/1PiWXpjBzbiKsSYqEo9Rkl72HMytMp7zTte9CI-vvwYw/edit).
## Post Incident
diff --git a/src/registrar/templates/admin/base_site.html b/src/registrar/templates/admin/base_site.html
index db34fd893..5ca5edffc 100644
--- a/src/registrar/templates/admin/base_site.html
+++ b/src/registrar/templates/admin/base_site.html
@@ -45,7 +45,7 @@
{% block header %}
{% if not IS_PRODUCTION %}
{% with add_body_class="margin-left-1" %}
- {% include "includes/non-production-alert.html" %}
+ {% include "includes/banner-non-production-alert.html" %}
{% endwith %}
{% endif %}
diff --git a/src/registrar/templates/base.html b/src/registrar/templates/base.html
index b14dab2fa..8967f9b03 100644
--- a/src/registrar/templates/base.html
+++ b/src/registrar/templates/base.html
@@ -72,9 +72,19 @@
Skip to main content
{% if not IS_PRODUCTION %}
- {% include "includes/non-production-alert.html" %}
+ {% include "includes/banner-non-production-alert.html" %}
{% endif %}
+ {% comment %}
+ Site banner / red alert banner / emergency banner / incident banner - Remove one of those includes and place outside the comment block to activate the banner.
+ {% include "includes/banner-error.html" %}
+ {% include "includes/banner-info.html" %}
+ {% include "includes/banner-service-disruption.html" %}
+ {% include "includes/banner-site-alert.html" %}
+ {% include "includes/banner-system-outage.html" %}
+ {% include "includes/banner-warning.html" %}
+ {% endcomment %}
+