Skip to content

Instantly share code, notes, and snippets.

@runtimeZero
Created August 31, 2017 03:26
Show Gist options
  • Save runtimeZero/259c8236caefbbf3c1f6f22f2c489938 to your computer and use it in GitHub Desktop.
Save runtimeZero/259c8236caefbbf3c1f6f22f2c489938 to your computer and use it in GitHub Desktop.
template for all-post.html
<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