diff --git a/plugins/Morpheus/templates/admin.twig b/plugins/Morpheus/templates/admin.twig
index 11907c0e7523ecd418ea183bc6fa19ac2b8e0a58..b49516e437f162830b07e930c87e804b9343f7a9 100644
--- a/plugins/Morpheus/templates/admin.twig
+++ b/plugins/Morpheus/templates/admin.twig
@@ -8,7 +8,9 @@
 {% block body %}
     {% set topMenuModule = 'CoreAdminHome' %}
     {% set topMenuAction = 'home' %}
+    {{ postEvent("Template.header", "admin") }}
     {{ parent() }}
+    {{ postEvent("Template.footer", "admin") }}
 {% endblock %}
 
 {% block root %}
diff --git a/plugins/Morpheus/templates/dashboard.twig b/plugins/Morpheus/templates/dashboard.twig
index bc5cd070afadb6754d7e3370e16227cf85b1536a..cebc8be707089fa21fc35e47cf72e5cbb613937a 100644
--- a/plugins/Morpheus/templates/dashboard.twig
+++ b/plugins/Morpheus/templates/dashboard.twig
@@ -15,8 +15,9 @@
 {% set bodyClass = postEvent('Template.bodyClass', 'dashboard') %}
 
 {% block body %}
+    {{ postEvent("Template.header", "dashboard") }}
     {{ parent() }}
-    {{ postEvent("Template.footer") }}
+    {{ postEvent("Template.footer", "dashboard") }}
 {% endblock %}
 
 {% block root %}