1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/frontend/app/gallery/grid/grid.gallery.component.html

15 lines
415 B
HTML
Raw Normal View History

2016-06-25 14:13:06 +02:00
<div #gridContainer>
2018-05-03 19:17:08 -04:00
<app-gallery-grid-photo
2018-03-30 15:30:30 -04:00
*ngFor="let gridPhoto of photosToRender"
[routerLink]="[]"
[queryParams]="queryService.getParams(gridPhoto.photo)"
2018-03-30 15:30:30 -04:00
[gridPhoto]="gridPhoto"
[style.width.px]="gridPhoto.renderWidth"
[style.height.px]="gridPhoto.renderHeight"
[style.marginLeft.px]="IMAGE_MARGIN"
[style.marginRight.px]="IMAGE_MARGIN">
2018-05-03 19:17:08 -04:00
</app-gallery-grid-photo>
2018-03-30 15:30:30 -04:00
</div>