%= row do %>
<%= span(12) do %>
<% if @line.products.any? %>
<% @line.products.order('position').each do |product| %>
-
<%= link_to "##{product.slug}", :title => product.title, :rel => 'tooltip' do %>
<%= image_tag product.can.url %>
<% end %>
<% end %>
<% end %>
<% end %>
<% end %>
<% if @line.products.any? %>
<% @line.products.order('position').each do |product| %>
-
<%= index_item(
:title => product.title,
:excerpt => product.excerpt,
:link_url => page_path_for(product),
:link_label => t('continue_reading', :scope => 'site', :default => "Continue Reading"),
:image => product.index_photo.url) %>
<% end %>
<% end %>