Skip to content

Instantly share code, notes, and snippets.

@ni-ka
Created December 16, 2011 16:54
Show Gist options
  • Save ni-ka/1486861 to your computer and use it in GitHub Desktop.
Save ni-ka/1486861 to your computer and use it in GitHub Desktop.
<% @videos.in_groups_of(3) do |video_group| %>
<div class="row">
<% video_group.each do |video| %>
<% if video != nil %>
<div class="span4">
<%= link_to video_path(video) do %>
<img class="thumbnail" src="http://placehold.it/210x150" />
<% end %>
<h5><%= video.title rescue "No title" %></h5>
</div>
<% end %>
<% end %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment