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