mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 06:53:03 +00:00
10 lines
682 B
HTML
10 lines
682 B
HTML
<div class="row">
|
|
<div *ngIf="showThumbnails" class="offset-3 offset-md-2 "></div>
|
|
<div [ngClass]="showThumbnails ? 'col-9' : 'col-md-12'">
|
|
<ds-themed-badges *ngIf="showLabel" [object]="dso"></ds-themed-badges>
|
|
<a *ngIf="linkType != linkTypes.None" [target]="(linkType == linkTypes.ExternalLink) ? '_blank' : '_self'" rel="noopener noreferrer" [routerLink]="['/collections/' + dso.id]" class="lead" [innerHTML]="dsoTitle"></a>
|
|
<span *ngIf="linkType == linkTypes.None" class="lead" [innerHTML]="dsoTitle"></span>
|
|
<div *ngIf="dso.shortDescription" class="text-muted abstract-text" [innerHTML]="firstMetadataValue('dc.description.abstract')"></div>
|
|
</div>
|
|
</div>
|