Created
December 4, 2014 09:54
-
-
Save notrab/bd7c5c525af4d4b2c057 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= 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