Skip to content

Instantly share code, notes, and snippets.

@mkubdev
Created October 21, 2020 09:39
Show Gist options
  • Select an option

  • Save mkubdev/8d894cdead7a25ae68d63a8392486015 to your computer and use it in GitHub Desktop.

Select an option

Save mkubdev/8d894cdead7a25ae68d63a8392486015 to your computer and use it in GitHub Desktop.
<div *ngIf="posts" class="row">
<div *ngFor="let post of posts" class="col-lg-4 col-md-4 col-sm-6">
<div class="post-item">
<a class="post-link">
<img class="img-fluid" src="http://localhost:1337{{post.content.CoverImage[0].url}}" alt="" /></a>
<div class="post-caption">
<div class="post-caption-heading">{{post.content.Title}}</div>
<div class="post-caption-subheading text-muted">{{post.content.Value}}</div>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment