Guest User

Untitled

a guest
Feb 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. {% for row in entry.homeFeaturedProducts.order('RAND()')|batch(4) %}
  2. {% for entry in row %}
  3. <h2 class="product-card-title"><a href="{{ entry.getUrl }}">{{ entry.title }}</a></h2>
  4. <span class="product-card-desc">Product Description</span>
  5. <span class="product-card-price">{{ entry.price }}</span>
  6. {% endfor %}
  7. {% endfor %}
Add Comment
Please, Sign In to add comment