Created
October 21, 2020 09:39
-
-
Save mkubdev/8d894cdead7a25ae68d63a8392486015 to your computer and use it in GitHub Desktop.
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 *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