mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
15 lines
632 B
HTML
15 lines
632 B
HTML
<ds-truncatable-part *ngIf="parentTitle$ && parentTitle$ | async" [maxLines]="1">
|
|
<div [ngClass]="isCurrent() ? 'text-light' : 'text-body'"
|
|
[innerHTML]="parentTitle$ | async"></div>
|
|
</ds-truncatable-part>
|
|
<ds-truncatable-part *ngIf="title" [maxLines]="1">
|
|
<div class="font-weight-bold"
|
|
[ngClass]="isCurrent() ? 'text-light' : 'text-primary'"
|
|
[innerHTML]="title"></div>
|
|
</ds-truncatable-part>
|
|
<ds-truncatable-part *ngIf="description" [maxLines]="1">
|
|
<div class="text-secondary"
|
|
[ngClass]="isCurrent() ? 'text-light' : 'text-secondary'"
|
|
[innerHTML]="description"></div>
|
|
</ds-truncatable-part>
|