Layouts
Drift Angular has lots of layout that fullfill your requirements to develop a Amaizing App.
There are following layouts which Drift Angular provides:
To use this layout add following route in
src/app/app-routing.module.ts
file:loadChildren: './layouts/default-layout/default-layout.module#DefaultLayoutModule'

To use this layout add following route in
src/app/app-routing.module.ts
file:loadChildren: './layouts/saas-layout/saas-layout.module#SaasLayoutModule'

To use this layout add following route in
src/app/app-routing.module.ts
file:loadChildren: './layouts/listing-layout/listing-layout.module#ListingLayoutModule'

To use this layout add following route in
src/app/app-routing.module.ts
file:loadChildren: './layouts/intranet-layout/intranet-layout.module#IntranetLayoutModule'

To use this layout add following route in
src/app/app-routing.module.ts
file:loadChildren: './layouts/back-office-layout/back-office-layout.module#BackOfficeLayoutModule'

To use this layout add following route in
src/app/app-routing.module.ts
file:loadChildren: './layouts/back-office-mini-layout/back-office-mini-layout.module#BackOfficeMiniLayoutModule'

To use this layout add following route in
src/app/app-routing.module.ts
file:loadChildren: './layouts/modern-layout/modern-layout.module#ModernLayoutModule'

To use this layout add following route in
src/app/app-routing.module.ts
file:loadChildren: './layouts/default-layout/crm-layout.module#CrmLayoutModule'

There are two common layouts for authentication and frontend pages.
Auth layout will use to authenticate user. Here user can signup and sign-in.
To use this layout add following route in
src/app/app-routing.module.ts
file:loadChildren: './layouts/auth-layout/auth.module#AuthModule'
and add AuthGuard to other reoutes to stop access without sign-in.
canActivate: [AuthGuard]
Frontend layout will use to for frontent pages in Drift Angular.
To use this layout add following route in
src/app/app-routing.module.ts
file:loadChildren: './layouts/frontend-layout/frontend-layout.module#FrontendLayoutModule'
Last modified 3yr ago