source: trip-planner-front/src/app/planner/planner.component.html@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 643 bytes
Line 
1<mat-grid-list cols="4" rowHeight="250px">
2 <mat-grid-tile *ngFor="let planner of planners" >
3 <mat-card class="example-card" >
4 <mat-card-title>{{planner.name}}</mat-card-title>
5 <mat-card-content>
6 {{planner.description}}
7 </mat-card-content>
8 <mat-card-actions>
9 <button mat-raised-button color="primary">
10 <mat-icon>edit</mat-icon> Edit
11 </button>
12
13 <button mat-raised-button color="accent">
14 <mat-icon>remove_red_eye</mat-icon>Details
15 </button>
16 </mat-card-actions>
17 </mat-card>
18 </mat-grid-tile>
19</mat-grid-list>
Note: See TracBrowser for help on using the repository browser.