mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
19 lines
649 B
HTML
19 lines
649 B
HTML
<div class="aca-content-header">
|
|
<button *ngIf="(appNavNarMode$ | async) === 'collapsed'"
|
|
mat-icon-button
|
|
class="aca-content-header-button"
|
|
(click)="toggleClick()"
|
|
title="{{'APP.TOOLTIPS.EXPAND_NAVIGATION' | translate}}">
|
|
<mat-icon>keyboard_double_arrow_right</mat-icon>
|
|
</button>
|
|
<ng-content select=".aca-page-layout-header, aca-page-layout-header" />
|
|
</div>
|
|
|
|
<ng-container *ngIf="hasError">
|
|
<ng-content select=".aca-page-layout-error, aca-page-layout-error" />
|
|
</ng-container>
|
|
|
|
<ng-container *ngIf="!hasError">
|
|
<ng-content select=".aca-page-layout-content, aca-page-layout-content" />
|
|
</ng-container>
|