Files
frontend-hideyoshi.com/src/app/home/stack-slider/stack-slider.component.html

10 lines
276 B
HTML

@if (stacks && stacks.length > 0) {
<ngx-glide #ngxGlide class="container stack-slider">
@for (stack of stacks; track stack) {
<app-stack-card class="slider-card" [stack]="stack"
[inFocus]="isInFocus(stack)">
</app-stack-card>
}
</ngx-glide>
}