mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
10 lines
597 B
HTML
10 lines
597 B
HTML
<ng-container *ngIf="(isMobile$ | async) && (isAuthenticated$ | async)">
|
|
<ds-user-menu [inExpandableNavbar]="true"></ds-user-menu>
|
|
</ng-container>
|
|
<div class="navbar-nav flex-shrink-1 h-100 align-items-md-stretch gapx-3" role="menubar" id="main-site-navigation" [ngClass]="(isMobile$ | async) ? 'navbar-nav-mobile' : 'navbar-nav-desktop'">
|
|
<ng-container *ngFor="let section of (sections | async)">
|
|
<ng-container
|
|
*ngComponentOutlet="(sectionMap$ | async).get(section.id)?.component; injector: (sectionMap$ | async).get(section.id)?.injector;"></ng-container>
|
|
</ng-container>
|
|
</div>
|