-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.component.html
More file actions
24 lines (24 loc) · 980 Bytes
/
app.component.html
File metadata and controls
24 lines (24 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<mat-toolbar color="primary">
<mat-toolbar-row>
<span>JS stack</span>
</mat-toolbar-row>
</mat-toolbar>
<main>
<mat-card>
<iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vSneOwdowxPXjfUpIOxcZ3IseqIW3QN9RXtPUjFqGwB5ghglZj6kOMNEx_opO32wUVY9lbyxX3PKau8/pubhtml?gid=863596831&single=true&widget=true&headers=false"></iframe>
</mat-card>
<mat-card>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLScq9AXz_2YCGgDT8F3K0pNbzSoY3G7SlYJ-yM98sfd5RJE8zQ/viewform?embedded=true" width="640" height="955" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</mat-card>
<mat-card *ngFor="let item of items">
<mat-card-header>
<mat-card-title>{{item.name}}</mat-card-title>
</mat-card-header>
<mat-card-content>
{{item.description}}
</mat-card-content>
<mat-card-actions>
<a mat-raised-button href="{{item.url}}" color="primary">More</a>
</mat-card-actions>
</mat-card>
</main>