Last active
February 2, 2017 17:14
-
-
Save Raistlfiren/58d4af73432bc3cbdfb1697415230f39 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
<section id="Services" class="light-wrapper"> | |
<div class="container inner"> | |
{% setcontent categories = 'productcategories' orderby 'id' %} | |
{% for columns in categories|batch(3) %} | |
<div class="row" style="margin-bottom:20px;"> | |
{% for category in columns %} | |
<div class="col-md-4"> | |
<div class="Headline-Text"> | |
<h4>{{ category.title }}</h4> | |
</div> | |
<div class="Bullets"> | |
<ul class="list prim list-Play"> | |
{% set products = category.related('products') %} | |
{% for product in products|order('title') %} | |
<li>{{ product.title }}</li> | |
{% endfor %} | |
</ul> | |
</div> | |
</div> | |
{% endfor %} | |
</div> | |
{% endfor %} | |
</div> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment