mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-09 19:13:08 +00:00
15 lines
495 B
HTML
15 lines
495 B
HTML
<div class="card">
|
|
<a [routerLink]="['/collections/', object.id]" class="card-img-top">
|
|
<ds-grid-thumbnail [thumbnail]="object.logo">
|
|
</ds-grid-thumbnail>
|
|
</a>
|
|
<div class="card-body">
|
|
<h4 class="card-title">{{object.name}}</h4>
|
|
<p *ngIf="object.shortDescription" class="card-text">{{object.shortDescription}}</p>
|
|
<div class="text-center">
|
|
<a [routerLink]="['/collections/', object.id]" class="lead btn btn-primary viewButton">View</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|