Sha256: cc3e9945d38fc60f4e428e42613ec109fae6fd7b3d13921b6ab4b817fab15edd

Contents?: true

Size: 1.29 KB

Versions: 6

Compression:

Stored size: 1.29 KB

Contents

<div data-hook="product_show" itemscope itemtype="http://schema.org/Product">
  <% @body_id = 'product-details' %>

  <div class="columns six alpha" data-hook="product_left_part">
    <div class="row" data-hook="product_left_part_wrap">

      <div id="product-images" data-hook="product_images">
        <div id="main-image" data-hook>
          <%= render :partial => 'image' %>
        </div>
        <div id="thumbnails" data-hook>
          <%= render :partial => 'thumbnails', :locals => { :product => @product } %>
        </div>
      </div>

      <div data-hook="product_properties">
        <%= render :partial => 'properties' %>
      </div>
    
    </div>
  </div>

  <div class="columns ten omega" data-hook="product_right_part">
    <div class="row" data-hook="product_right_part_wrap">

      <div id="product-description" data-hook="product_description">

        <h1 class="product-title" itemprop="name"><%= accurate_title %></h1>

        <div itemprop="description" data-hook="product_description">
          <%= product_description(@product) rescue 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>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spree_core-1.0.7 app/views/spree/products/show.html.erb
spree_core-1.0.6 app/views/spree/products/show.html.erb
spree_core-1.0.4 app/views/spree/products/show.html.erb
spree_core-1.0.3 app/views/spree/products/show.html.erb
spree_core-1.0.2 app/views/spree/products/show.html.erb
spree_core-1.0.1 app/views/spree/products/show.html.erb