Last active
April 19, 2020 12:51
-
-
Save stefansheva/bf197dba82c536e52f6d7edacb5126ba to your computer and use it in GitHub Desktop.
This file contains 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="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.contents[0].coverImage.url}}" alt="" /></a> | |
<div class="post-caption"> | |
<div class="post-caption-heading">{{post.contents[0].title}}</div> | |
<div class="post-caption-subheading text-muted">{{post.contents[0].value}}</div> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment