Skip to content

Instantly share code, notes, and snippets.

@notrab
Created December 4, 2014 09:54
Show Gist options
  • Save notrab/bd7c5c525af4d4b2c057 to your computer and use it in GitHub Desktop.
Save notrab/bd7c5c525af4d4b2c057 to your computer and use it in GitHub Desktop.
<%= content_tag :li, class: product.primary_collection.to_param do %>
<%= link_to collection_product_path(product.primary_collection, product) do %>
<div class="thumbnail">
<%= product_thumbnail(product) %>
</div>
<div class="summary">
<h3><%= product.name %></h3>
<p class="type"><%= product.type_name %></p>
<% if product.manufacturer_name.present? %>
<p class="brand">By <%= product.manufacturer_name %></p>
<% end %>
</div>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment