Skip to content

Instantly share code, notes, and snippets.

@cernalpanic
Created April 18, 2013 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cernalpanic/5414211 to your computer and use it in GitHub Desktop.
Save cernalpanic/5414211 to your computer and use it in GitHub Desktop.
in_groups_of example. bootstrap row class every third
<div class="span6">
<h3><%= link_to "Background Images", bgimages_path %></h3>
<% @bgimages.in_groups_of(3, false) do |bgimage_rows| %>
<div class="row">
<% for bgimage in bgimage_rows %>
<div class="span2 text-left">
<a href="<%= bgimage.bgimagefile.url %>"><img class="bgimagethumb img-polaroid" src="<%= bgimage.bgimagefile.url(:thumb) %>" /></a>
</div>
<% end %>
</div>
<% end %>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment