Sha256: 1d5eac99b80e7e62518671632c9fb67402d6d832b4bdda63e174cb16be1729dd
Contents?: true
Size: 1.27 KB
Versions: 2
Compression:
Stored size: 1.27 KB
Contents
<% paginated_products = @searcher.retrieve_products if params.key?(:keywords) paginated_products ||= products %> <% if products.empty? %> <%= t(:no_products_found) %> <% elsif params.key?(:keywords) %> <h6 class="search-results-title"><%= t(:search_results, :keywords => h(params[:keywords])) %></h6> <% end %> <% if products.any? %> <ul id="products" class="inline product-listing" data-hook> <% products.each do |product| %> <% if Spree::Config[:show_zero_stock_products] || product.has_stock? %> <li id="product_<%= product.id %>" class="columns three <%= cycle("alpha", "secondary", "", "omega secondary") %>" data-hook="products_list_item" itemscope itemtype="http://schema.org/Product"> <div class="product-image"> <%= link_to small_image(product, :itemprop => "image"), product, :itemprop => 'url' %> </div> <%= link_to truncate(product.name, :length => 50), product, :class => 'info', :itemprop => "name", :title => product.name %> <span class="price selling" itemprop="price"><%= number_to_currency product.price %></span> </li> <% end %> <% end %> </ul> <% end %> <% if paginated_products.respond_to?(:num_pages) params.delete(:search) params.delete(:taxon) %><%= paginate paginated_products %><% end %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_core-1.1.0.rc2 | app/views/spree/shared/_products.html.erb |
spree_core-1.1.0.rc1 | app/views/spree/shared/_products.html.erb |