Files
frontend-hideyoshi.com/src/app/projects/projects.component.html

9 lines
216 B
HTML

<div class="container">
@for (p of projects; track identifyProject(i, p); let i = $index) {
<div>
<app-project-card [project]="p" [inverted]="i % 2 !== 0">
</app-project-card>
</div>
}
</div>