<% if @pictures and @pictures.any? %> <%= pagination_tag @search %>
<% @pictures.in_groups_of(4, false) do |pictures| %>
<% pictures.each do |picture| %>
<%= link_to '#', class: 'media-link bg-transparent', data: {media: 'picture', 'media-id' => picture.id} do %> <%= image_tag picture.url(:thumb), title: picture.data_file_name, class: 'media-image' %> <% end %>
<% end -%>
<% end -%> <% else -%>

Yikes! I couldn't find any pictures matching your search.

<% end -%>