Last active
August 29, 2015 14:23
-
-
Save gdeer81/1a87b20b628b9becd7c8 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
<!-- server passes in a collection of product maps --> | |
<!-- controller now sends a collection of collections of product maps, specifically (partition-all 4 products) --> | |
{% for product-partition in partitioned-products %} | |
{% for product in product-partition %} | |
<div class="col-sm-10 col-sm-offset-2"> | |
<div class="row"> | |
<div class="col-sm-3" style="height:250px;"> | |
<p>{{product.name}}</p> | |
<p>Price ${{product.price}}</p> | |
</div> | |
</div> | |
</div> | |
{% endfor %} | |
{% endfor %} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment