Skip to content

Instantly share code, notes, and snippets.

@thomsbg
Created February 6, 2014 16:00
Show Gist options
  • Save thomsbg/8847050 to your computer and use it in GitHub Desktop.
Save thomsbg/8847050 to your computer and use it in GitHub Desktop.
each_slice
<% data.stories.each_slice(4) do |chunk| %>
<div class="m-box">
<% chunk.each do |d| %>
<div class="m-boxes__quarter" style="background-image: url('<%= d.image %>');">
<h6><a href="<%= d.url %>" target="new"><%= d.headline %></a></h6>
</div>
<% end %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment