mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
20 lines
1.3 KiB
HTML
20 lines
1.3 KiB
HTML
<div class="card">
|
|
<a *ngIf="linkType != linkTypes.None" [target]="(linkType == linkTypes.ExternalLink) ? '_blank' : '_self'" [attr.rel]="(linkType == linkTypes.ExternalLink) ? 'noopener noreferrer' : null" [routerLink]="['/communities/', dso.id]" class="card-img-top" [attr.title]="'search.results.view-result' | translate">
|
|
<ds-thumbnail [thumbnail]="(dso.logo | async)?.payload" [limitWidth]="false">
|
|
</ds-thumbnail>
|
|
</a>
|
|
<span *ngIf="linkType == linkTypes.None" class="card-img-top">
|
|
<ds-thumbnail [thumbnail]="(dso.logo | async)?.payload" [limitWidth]="false">
|
|
</ds-thumbnail>
|
|
</span>
|
|
<div class="card-body">
|
|
<ds-type-badge *ngIf="showLabel" [object]="dso"></ds-type-badge>
|
|
<h4 class="card-title">{{dso.name}}</h4>
|
|
<p *ngIf="dso.shortDescription" class="card-text">{{dso.shortDescription}}</p>
|
|
<div *ngIf="linkType != linkTypes.None" class="text-center">
|
|
<a [target]="(linkType == linkTypes.ExternalLink) ? '_blank' : '_self'" [attr.rel]="(linkType == linkTypes.ExternalLink) ? 'noopener noreferrer' : null" [routerLink]="['/communities/', dso.id]" class="lead btn btn-primary viewButton">{{ 'search.results.view-result' | translate}}</a>
|
|
</div>
|
|
</div>
|
|
<ng-content></ng-content>
|
|
</div>
|