diff --git a/projects/nshmp-apps/src/app/dev/dashboard/app.component.html b/projects/nshmp-apps/src/app/dev/dashboard/app.component.html
index 19568f897d61cb473a96cce4fb377258535caec2..8c2c6ecffb3a307c8c159cb3a3b46a3f163d7420 100644
--- a/projects/nshmp-apps/src/app/dev/dashboard/app.component.html
+++ b/projects/nshmp-apps/src/app/dev/dashboard/app.component.html
@@ -1,4 +1,8 @@
-<nshmp-lib-ng-template #template [navigationList]="navigationList">
+<nshmp-lib-ng-template
+  #template
+  [navigationList]="navigationList"
+  [title]="title"
+>
   <!-- Dashboard -->
   <nshmp-lib-ng-dashboard [sections]="sections">
     <nshmp-lib-ng-dashboard-title>
diff --git a/projects/nshmp-apps/src/app/dev/dashboard/app.component.ts b/projects/nshmp-apps/src/app/dev/dashboard/app.component.ts
index fc22fe0f0c64b4113fa9748666f4008dd26221ef..4e6d8365fcfa8986f8778f9b4401a647f6fbf180 100644
--- a/projects/nshmp-apps/src/app/dev/dashboard/app.component.ts
+++ b/projects/nshmp-apps/src/app/dev/dashboard/app.component.ts
@@ -34,6 +34,8 @@ export class AppComponent {
   /** Navigation list for menu */
   navigationList = nav.devNavigation();
 
+  title = 'Development Applications';
+
   /** Main development applications */
   private mainApps = nav.devMainApps();
 
diff --git a/projects/nshmp-apps/src/app/dev/gmm/dashboard/app.component.html b/projects/nshmp-apps/src/app/dev/gmm/dashboard/app.component.html
index 389a2c0fdcf728e3193e7472f0deb41ebd34c4a2..b1cc26d5884ee690e40b2a13f0bc9885ce7bf06e 100644
--- a/projects/nshmp-apps/src/app/dev/gmm/dashboard/app.component.html
+++ b/projects/nshmp-apps/src/app/dev/gmm/dashboard/app.component.html
@@ -1,4 +1,8 @@
-<nshmp-lib-ng-template #template [navigationList]="navigationList" [title]="">
+<nshmp-lib-ng-template
+  #template
+  [navigationList]="navigationList"
+  [title]="title"
+>
   <!-- Dashboard -->
   <nshmp-lib-ng-dashboard [sections]="sections">
     <nshmp-lib-ng-dashboard-title>
diff --git a/projects/nshmp-apps/src/app/dev/gmm/dashboard/app.component.ts b/projects/nshmp-apps/src/app/dev/gmm/dashboard/app.component.ts
index f7275a6cdd22b5560f1a63ab313e848b4518eaa6..79f6025a23884c5d121fe9c83400a8f3f9a9c7f2 100644
--- a/projects/nshmp-apps/src/app/dev/gmm/dashboard/app.component.ts
+++ b/projects/nshmp-apps/src/app/dev/gmm/dashboard/app.component.ts
@@ -33,6 +33,8 @@ export class AppComponent {
   /** Navigation list for menu */
   navigationList = devNavigation();
 
+  title = 'GMM Applications';
+
   sections: ApplicationSections[] = [
     {
       gridClass: 'grid-col-10',
diff --git a/projects/nshmp-apps/src/app/dev/hazard/dashboard/app.component.html b/projects/nshmp-apps/src/app/dev/hazard/dashboard/app.component.html
index 389d2a21b6a519e7dcffea32e4e9fb05f75f8064..cd1fb0e4826ae4e1aaa5f099da8f7642cc9a3eb0 100644
--- a/projects/nshmp-apps/src/app/dev/hazard/dashboard/app.component.html
+++ b/projects/nshmp-apps/src/app/dev/hazard/dashboard/app.component.html
@@ -1,4 +1,8 @@
-<nshmp-lib-ng-template #template [navigationList]="navigationList" [title]="">
+<nshmp-lib-ng-template
+  #template
+  [navigationList]="navigationList"
+  [title]="title"
+>
   <!-- Dashboard -->
   <nshmp-lib-ng-dashboard [sections]="sections">
     <nshmp-lib-ng-dashboard-title>
diff --git a/projects/nshmp-apps/src/app/dev/hazard/dashboard/app.component.ts b/projects/nshmp-apps/src/app/dev/hazard/dashboard/app.component.ts
index 6c827f6c1f7870aed51cb846af146f98848d0659..ada40f9e30612a7efb096feaddff3b550ab68ad2 100644
--- a/projects/nshmp-apps/src/app/dev/hazard/dashboard/app.component.ts
+++ b/projects/nshmp-apps/src/app/dev/hazard/dashboard/app.component.ts
@@ -33,6 +33,8 @@ export class AppComponent {
   /** Navigation list for menu */
   navigationList = devNavigation();
 
+  title = 'Hazard Applications';
+
   sections: ApplicationSections[] = [
     {
       gridClass: 'grid-col-10',
diff --git a/projects/nshmp-apps/src/app/dev/math/dashboard/app.component.html b/projects/nshmp-apps/src/app/dev/math/dashboard/app.component.html
index 56569f555f18ce131d8497a4bdff82c980f01160..755f5e99ff48d224d4bfd75a7c7f0b0713ba1a02 100644
--- a/projects/nshmp-apps/src/app/dev/math/dashboard/app.component.html
+++ b/projects/nshmp-apps/src/app/dev/math/dashboard/app.component.html
@@ -1,4 +1,8 @@
-<nshmp-lib-ng-template #template [navigationList]="navigationList" [title]="">
+<nshmp-lib-ng-template
+  #template
+  [navigationList]="navigationList"
+  [title]="title"
+>
   <!-- Dashboard -->
   <nshmp-lib-ng-dashboard [sections]="sections">
     <nshmp-lib-ng-dashboard-title>
diff --git a/projects/nshmp-apps/src/app/dev/math/dashboard/app.component.ts b/projects/nshmp-apps/src/app/dev/math/dashboard/app.component.ts
index 9ecce1d8a5c240c168ede347467a98795a37ec69..9a1d7e51d21d442389f72b90c14fa704f7a48e9f 100644
--- a/projects/nshmp-apps/src/app/dev/math/dashboard/app.component.ts
+++ b/projects/nshmp-apps/src/app/dev/math/dashboard/app.component.ts
@@ -33,6 +33,8 @@ export class AppComponent {
   /** Navigation list for menu */
   navigationList = devNavigation();
 
+  title = 'Math Applications';
+
   sections: ApplicationSections[] = [
     {
       gridClass: 'grid-col-10',
diff --git a/projects/nshmp-apps/src/app/gmm/dashboard/app.component.html b/projects/nshmp-apps/src/app/gmm/dashboard/app.component.html
index ee3e466527f048ef6dc829063f6c601ce51e179b..8304e735c9efad2e6fda278dfbc55b389ac80cc9 100644
--- a/projects/nshmp-apps/src/app/gmm/dashboard/app.component.html
+++ b/projects/nshmp-apps/src/app/gmm/dashboard/app.component.html
@@ -1,4 +1,8 @@
-<nshmp-lib-ng-template #template [navigationList]="navigationList" [title]="">
+<nshmp-lib-ng-template
+  #template
+  [navigationList]="navigationList"
+  [title]="title"
+>
   <!-- Dashboard -->
   <nshmp-lib-ng-dashboard [sections]="sections">
     <nshmp-lib-ng-dashboard-title>
diff --git a/projects/nshmp-apps/src/app/gmm/dashboard/app.component.ts b/projects/nshmp-apps/src/app/gmm/dashboard/app.component.ts
index 682b13bdfaf981ad8ae6d492fb616d668d520c39..f071f9f5a587a7109a0511fc226b6851fb42ff4f 100644
--- a/projects/nshmp-apps/src/app/gmm/dashboard/app.component.ts
+++ b/projects/nshmp-apps/src/app/gmm/dashboard/app.component.ts
@@ -33,6 +33,8 @@ export class AppComponent {
   /** Navigation list for menu */
   navigationList = navigation();
 
+  title = 'GMM Applications';
+
   sections: ApplicationSections[] = [
     {
       gridClass: 'grid-col-10',
diff --git a/projects/nshmp-apps/src/app/hazard/dashboard/app.component.html b/projects/nshmp-apps/src/app/hazard/dashboard/app.component.html
index b20dfdbe0bb641fd0a40c4663239fd589b237eb5..baf20fa7d7e1851fa7544e30408c2cfea6af35d9 100644
--- a/projects/nshmp-apps/src/app/hazard/dashboard/app.component.html
+++ b/projects/nshmp-apps/src/app/hazard/dashboard/app.component.html
@@ -1,4 +1,8 @@
-<nshmp-lib-ng-template #template [navigationList]="navigationList" [title]="">
+<nshmp-lib-ng-template
+  #template
+  [navigationList]="navigationList"
+  [title]="title"
+>
   <!-- Dashboard -->
   <nshmp-lib-ng-dashboard [sections]="sections">
     <nshmp-lib-ng-dashboard-title>
diff --git a/projects/nshmp-apps/src/app/hazard/dashboard/app.component.ts b/projects/nshmp-apps/src/app/hazard/dashboard/app.component.ts
index 4963010c32c7ae9765af74af55b440ac3ff8fe36..466b802f8abc10eb713a431db9fac47d6a7cb5c0 100644
--- a/projects/nshmp-apps/src/app/hazard/dashboard/app.component.ts
+++ b/projects/nshmp-apps/src/app/hazard/dashboard/app.component.ts
@@ -33,6 +33,8 @@ export class AppComponent {
   /** Navigation list for menu */
   navigationList = navigation();
 
+  title = 'Hazard Applications';
+
   sections: ApplicationSections[] = [
     {
       gridClass: 'grid-col-10',
diff --git a/projects/nshmp-apps/src/app/internal/dashboard/app.component.html b/projects/nshmp-apps/src/app/internal/dashboard/app.component.html
index 2384d26ae35e3c78c73bcc2c37f069e6bc6a1d45..d4913aec9b7c6b09797294e403ac861688972075 100644
--- a/projects/nshmp-apps/src/app/internal/dashboard/app.component.html
+++ b/projects/nshmp-apps/src/app/internal/dashboard/app.component.html
@@ -1,4 +1,8 @@
-<nshmp-lib-ng-template #template [navigationList]="navigationList">
+<nshmp-lib-ng-template
+  #template
+  [navigationList]="navigationList"
+  [title]="title"
+>
   <!-- Dashboard -->
   <nshmp-lib-ng-dashboard [sections]="sections">
     <nshmp-lib-ng-dashboard-title>
diff --git a/projects/nshmp-apps/src/app/internal/dashboard/app.component.ts b/projects/nshmp-apps/src/app/internal/dashboard/app.component.ts
index 42fbf69187601c51eae73de510a7ed9a56cab5cc..d3ce98b923d744b23f34940a2ffe53239fff8184 100644
--- a/projects/nshmp-apps/src/app/internal/dashboard/app.component.ts
+++ b/projects/nshmp-apps/src/app/internal/dashboard/app.component.ts
@@ -36,6 +36,8 @@ export class AppComponent implements OnInit, OnDestroy {
   /** Navigation list for menu */
   navigationList = nav.internalNavigation();
 
+  title = 'Internal Applications';
+
   /** AWS applications */
   private awsApps = nav.internalAwsApps();
 
diff --git a/projects/nshmp-apps/src/app/ncm/dashboard/app.component.html b/projects/nshmp-apps/src/app/ncm/dashboard/app.component.html
index 35b0fc3979cb93c2dc36bf4feefbcb73a1c0666c..4e34e88b86eb7095b3b97fc1105734698ebbd187 100644
--- a/projects/nshmp-apps/src/app/ncm/dashboard/app.component.html
+++ b/projects/nshmp-apps/src/app/ncm/dashboard/app.component.html
@@ -1,4 +1,8 @@
-<nshmp-lib-ng-template #template [navigationList]="navigationList" [title]="">
+<nshmp-lib-ng-template
+  #template
+  [navigationList]="navigationList"
+  [title]="title"
+>
   <!-- Dashboard -->
   <nshmp-lib-ng-dashboard [sections]="sections">
     <nshmp-lib-ng-dashboard-title>
diff --git a/projects/nshmp-apps/src/app/ncm/dashboard/app.component.ts b/projects/nshmp-apps/src/app/ncm/dashboard/app.component.ts
index 7a677f638d236d6c4d2c19bc88f761e6748c8c75..2cd182194e8085155b22f01cf7a41016cd3bf327 100644
--- a/projects/nshmp-apps/src/app/ncm/dashboard/app.component.ts
+++ b/projects/nshmp-apps/src/app/ncm/dashboard/app.component.ts
@@ -33,6 +33,8 @@ export class AppComponent {
   /** Navigation list for menu */
   navigationList = navigation();
 
+  title = 'NCM Applications';
+
   sections: ApplicationSections[] = [
     {
       gridClass: 'grid-col-10',
diff --git a/projects/nshmp-apps/src/app/source/dashboard/app.component.html b/projects/nshmp-apps/src/app/source/dashboard/app.component.html
index a39713d9b34abad6f55e9e2bc11c1a30c7676772..be11ff361a9ab2f34561830996cf0a2602c8f29f 100644
--- a/projects/nshmp-apps/src/app/source/dashboard/app.component.html
+++ b/projects/nshmp-apps/src/app/source/dashboard/app.component.html
@@ -1,4 +1,8 @@
-<nshmp-lib-ng-template #template [navigationList]="navigationList" [title]="">
+<nshmp-lib-ng-template
+  #template
+  [navigationList]="navigationList"
+  [title]="title"
+>
   <!-- Dashboard -->
   <nshmp-lib-ng-dashboard [sections]="sections">
     <nshmp-lib-ng-dashboard-title>
diff --git a/projects/nshmp-apps/src/app/source/dashboard/app.component.ts b/projects/nshmp-apps/src/app/source/dashboard/app.component.ts
index a19b283acfda3311353dbc7c031970ef15598f1a..1f3231e030a5b71a5a885feb92ee8bb551cbce13 100644
--- a/projects/nshmp-apps/src/app/source/dashboard/app.component.ts
+++ b/projects/nshmp-apps/src/app/source/dashboard/app.component.ts
@@ -33,6 +33,8 @@ export class AppComponent {
   /** Navigation list for menu */
   navigationList = navigation();
 
+  title = 'Source Model Applications';
+
   sections: ApplicationSections[] = [
     {
       gridClass: 'grid-col-10',