18 lines
565 B
HTML
18 lines
565 B
HTML
<mat-card class="mat-elevation-z8">
|
|
<mat-card-header>
|
|
<div mat-card-avatar>
|
|
<button mat-icon-button [routerLink]="['/songs']" >
|
|
<fa-icon [icon]="faArrow"></fa-icon>
|
|
</button>
|
|
</div>
|
|
<mat-card-title>{{ song.Name }}</mat-card-title>
|
|
<mat-card-subtitle>{{ song.Key }} - {{ song.Velocity }}</mat-card-subtitle>
|
|
</mat-card-header>
|
|
<mat-card-content>
|
|
<p>{{ song.Text }}</p>
|
|
</mat-card-content>
|
|
<mat-card-actions>
|
|
<button mat-button (click)="onClickDownload()">Herunterladen</button>
|
|
</mat-card-actions>
|
|
</mat-card>
|