You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi/ClientApp/src/app/home/tv/popular-tv.component.html

15 lines
528 B

<div *ngIf="tvShows" class="row">
<div class="col-lg-2 col-md-4 col-6" *ngFor="let tv of tvShows">
<mat-card>
<img mat-card-image src="{{tv.banner}}" alt="{{tv.title}}">
<mat-card-content>
<h5>{{tv.title}}</h5>
</mat-card-content>
<mat-card-actions>
<button mat-raised-button color="primary">Request</button>
</mat-card-actions>
</mat-card>
</div>
</div>