Skip to content

Instantly share code, notes, and snippets.

@jinalshah999
Created June 26, 2017 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jinalshah999/c274b0af947af1ef414b4ecb15a332a3 to your computer and use it in GitHub Desktop.
Save jinalshah999/c274b0af947af1ef414b4ecb15a332a3 to your computer and use it in GitHub Desktop.
<div class="container">
<div class="row">
<div *ngFor="let item of allProduct" class="col-sm-6 col-md-4">
<div class="thumbnail">
<img height="250" src="{{item.pimg}}" alt="...">
<div class="caption">
<h3>{{item.pname}}</h3>
<p>{{item.pprice | currency:'INR':true }}</p>
<p><a class="btn btn-primary" role="button">{{item.soh}}</a> <a class="btn btn-default" role="button">Button</a></p>
</div>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment