mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
22 lines
852 B
HTML
22 lines
852 B
HTML
<div class="outer-wrapper">
|
|
<ds-admin-sidebar></ds-admin-sidebar>
|
|
<div class="inner-wrapper" [@slideSidebarPadding]="{
|
|
value: (!(sidebarVisible | async) ? 'hidden' : (slideSidebarOver | async) ? 'shown' : 'expanded'),
|
|
params: {collapsedSidebarWidth: (collapsedSidebarWidth | async), totalSidebarWidth: (totalSidebarWidth | async)}
|
|
}">
|
|
<ds-header-navbar-wrapper></ds-header-navbar-wrapper>
|
|
|
|
<ds-notifications-board
|
|
[options]="config.notifications">
|
|
</ds-notifications-board>
|
|
<main class="main-content">
|
|
<div class="container" *ngIf="isLoading$ | async">
|
|
<ds-loading message="{{'loading.default' | translate}}"></ds-loading>
|
|
</div>
|
|
<router-outlet></router-outlet>
|
|
</main>
|
|
|
|
<ds-footer></ds-footer>
|
|
</div>
|
|
</div>
|