Sha256: 7b77d4db1e19964a30c225ca43a99685cfd95d289d1fe963305da5a3baf1a529
Contents?: true
Size: 1.22 KB
Versions: 3
Compression:
Stored size: 1.22 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 product.on_display? %> <li id="product_<%= product.id %>" class="columns three <%= cycle("alpha", "secondary", "", "omega secondary", :name => "classes") %>" 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"><%= display_price(product) %></span> </li> <% end %> <% end %> <% reset_cycle("classes") %> </ul> <% end %> <% if paginated_products.respond_to?(:num_pages) %> <%= paginate paginated_products %> <% end %>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
spree_core-1.3.5 | app/views/spree/shared/_products.html.erb |
spree_core-1.3.4 | app/views/spree/shared/_products.html.erb |
spree_core-1.3.3 | app/views/spree/shared/_products.html.erb |