Created
August 31, 2017 03:26
-
-
Save runtimeZero/259c8236caefbbf3c1f6f22f2c489938 to your computer and use it in GitHub Desktop.
template for all-post.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="row"> | |
<div class="col-lg-12 text-left"> | |
<button class="btn btn-primary" (click)="onLoadMore()">Load More Images</button> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-lg-12"> | |
<div class="image-container"> | |
<app-post *ngFor="let post of all" | |
[imageName]="post.data.name" | |
(favoriteClicked)="onFavoritesClicked($event)" | |
(followClicked)="onFollowClicked($event)" | |
> | |
</app-post> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment