Initial Implementation of Project Cards
This commit is contained in:
6
src/app/projects/projects.component.html
Normal file
6
src/app/projects/projects.component.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<div class="container">
|
||||
<div *ngFor="let p of projects; index as i;trackBy: identifyProject">
|
||||
<app-project-card [project]="p" [inverted]="i % 2 !== 0">
|
||||
</app-project-card>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user