Sha256: b8c5729faf34fde0ca8fed2a248cc8dd75bf571c5962384b2c103e651f921ca6
Contents?: true
Size: 1.53 KB
Versions: 1
Compression:
Stored size: 1.53 KB
Contents
<% @body_id = 'product-details' %> <% cache [I18n.locale, current_currency, @product] do %> <div data-hook="product_show" itemscope itemtype="https://schema.org/Product"> <div class="col-md-4" data-hook="product_left_part"> <div data-hook="product_left_part_wrap"> <div id="product-images" data-hook="product_images"> <div id="main-image" class="panel panel-default" data-hook> <div class="panel-body text-center"> <%= render :partial => 'image' %> </div> </div> <div id="thumbnails" data-hook> <%= render :partial => 'thumbnails' %> </div> </div> <div data-hook="product_properties"> <%= render :partial => 'properties' %> </div> <div data-hook="promotions"> <%= render :partial => 'promotions' %> </div> </div> </div> <div class="col-md-8" data-hook="product_right_part"> <div data-hook="product_right_part_wrap"> <div id="product-description" data-hook="product_description"> <h1 class="product-title" itemprop="name"><%= @product.name %></h1> <div class="well" itemprop="description" data-hook="description"> <%= product_description(@product) rescue Spree.t(:product_has_no_description) %> </div> <div id="cart-form" data-hook="cart_form"> <%= render :partial => 'cart_form' %> </div> </div> <%= render :partial => 'taxons' %> </div> </div> </div> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree_frontend-3.0.1 | app/views/spree/products/show.html.erb |