templates/content/productdetail.html.twig line 1

Open in your IDE?
  1. {% extends 'layout.html.twig' %}
  2. {% block content %}
  3. <div class="product-info">
  4.         {% set product = pimcore_relation("product").element %}
  5.         {% if product %}
  6.             <div class="content">
  7.                     <div class="content-detail">
  8.             <div class="row">
  9.                 <div class="col-md-6">
  10.                     <div class="products-img">
  11.                         <img src="{{ asset('/var/assets/' ~ product.products_image) }}" alt="">
  12.                     </div>
  13.                 </div>
  14.                 <div class="col-md-6">
  15.                     <div class="product-detail">
  16.                         <div class="product-name">
  17.                             <h2>{{ product.products_name|raw }}</h2>
  18.                         </div>
  19.                         <div class="short-decs">
  20.                             <p>{{ product.products_short_description|striptags}}</p>
  21.                         </div>
  22.                         <div class="row">
  23.                             <div class="col-md-6">
  24.                                 <div class="products-price">
  25.                                     <h3>Price: {{ product.products_price|raw}}</h3>
  26.                                 </div>
  27.                                 <div class="product-id">
  28.                                     <p>Product Id: {{ product.product_id|raw}}</p>
  29.                                 </div>
  30.                                 <div class="finanace-avail">
  31.                                     <p><span>Finance Available:</span>{{ product.finanace_avail|raw}}</p>
  32.                                 </div>
  33.                             </div>
  34.                             <div class="col-md-6">
  35.                             </div>
  36.                         </div>
  37.                     </div>
  38.                 </div>
  39.             </div>
  40.         </div>
  41.         <div class="product-specifications">
  42.             <div class="products-decs">
  43.                 <h3>Products Specifications</h3>
  44.                 <h5>Description:</h5>
  45.                 <p>Product Details Downloads Features & Benefits: Original Truliner® PMMA Denture Corrective Relining
  46.                     Material is a color stable, permanent and reline PMMA chairside denture reline material formulated
  47.                     to last the life of the denture. The extremely fine-milled powder cures to a dense consistency and
  48.                     prevents the reline from assuming odors, tastes, or stains. Original Truliner is a unique reverse
  49.                     curing acrylic (cures from the inside out) which releases the free monomer before it is inserted in
  50.                     the mouth, eliminating chemical and thermal sensitivity. Creates a strong permanent bond in as
  51.                     little as ten minutes that will not chip or discolor. Powder available in pink color. Original
  52.                     Truliner uses a PMMA monomer and should NOT be left to set in a patient's mouth. Remove at the
  53.                     doughy stage and if available, place into a Pressure Pot or warm bath to accelerate the cure. A
  54.                     Pressure Pot will eliminate porosity, without distorting the denture. Recommended for use with:
  55.                     Cora-Caine®, Glaze™, Masque™ and Pressure Pot. Standard Kit contains:8 oz. (236g) Powder6 oz.
  56.                     (177ml) Liquid Application: Used for repairs and orthodontic appliances.Show More Harry J Bosworth
  57.                     Product Catalogue Original Truliner Sell Sheet Original Truliner Liquid SDS Original Truliner Powder
  58.                     SDS</p>
  59.             </div>
  60.             <div class="row">
  61.             <h5>Features:</h5>
  62.                 <div class="col-md-4">
  63.                     <div class="product-spec">
  64.                         <p><span>Model Name:</span>{{ product.products_model|raw}}</p>
  65.                     </div>
  66.                     <div class="product-Width">
  67.                         <p><span>Product Width:</span>{{ product.products_width|raw}}</p>
  68.                     </div>  
  69.                 </div>
  70.                 <div class="col-md-4">    
  71.                     <div class="product-length">
  72.                         <p><span>Product Length:</span>{{ product.products_length|raw}}</p>
  73.                     </div>
  74.                     <div class="product-height">
  75.                         <p><span>Product Height:</span>{{ product.products_height|raw}}</p>
  76.                     </div>
  77.                 </div>
  78.                 <div class="col-md-4">
  79.                     <div class="product-spec">
  80.                         <p><span>Product Weight:</span>{{ product.products_weight|raw}}</p>
  81.                     </div>
  82.                 </div>
  83.             </div>
  84.         </div>       
  85.             </div>
  86.         </div>
  87.         {% endif %}
  88. {% endblock %}