Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <% @brand_promotions.each_with_index do |index, brand_promotion| %>
  2. <% if (index % 4) == 0 %>
  3. <div class="row">
  4. <% end %>
  5. <div class="col-3">
  6. Column <%= index %>
  7. </div>
  8. <% if (index % 4) == 0 %>
  9. </div>
  10. <% end %>
  11. <% end %>
  12.  
  13. <% @brand_promotions.each_with_index do |brand_promotion, index| %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement