{% extends 'layout.html.twig' %}
{% block content %}
<div class="product-info">
{% set product = pimcore_relation("product").element %}
{% if product %}
<div class="content">
<div class="content-detail">
<div class="row">
<div class="col-md-6">
<div class="products-img">
<img src="{{ asset('/var/assets/' ~ product.products_image) }}" alt="">
</div>
</div>
<div class="col-md-6">
<div class="product-detail">
<div class="product-name">
<h2>{{ product.products_name|raw }}</h2>
</div>
<div class="short-decs">
<p>{{ product.products_short_description|striptags}}</p>
</div>
<div class="row">
<div class="col-md-6">
<div class="products-price">
<h3>Price: {{ product.products_price|raw}}</h3>
</div>
<div class="product-id">
<p>Product Id: {{ product.product_id|raw}}</p>
</div>
<div class="finanace-avail">
<p><span>Finance Available:</span>{{ product.finanace_avail|raw}}</p>
</div>
</div>
<div class="col-md-6">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="product-specifications">
<div class="products-decs">
<h3>Products Specifications</h3>
<h5>Description:</h5>
<p>Product Details Downloads Features & Benefits: Original Truliner® PMMA Denture Corrective Relining
Material is a color stable, permanent and reline PMMA chairside denture reline material formulated
to last the life of the denture. The extremely fine-milled powder cures to a dense consistency and
prevents the reline from assuming odors, tastes, or stains. Original Truliner is a unique reverse
curing acrylic (cures from the inside out) which releases the free monomer before it is inserted in
the mouth, eliminating chemical and thermal sensitivity. Creates a strong permanent bond in as
little as ten minutes that will not chip or discolor. Powder available in pink color. Original
Truliner uses a PMMA monomer and should NOT be left to set in a patient's mouth. Remove at the
doughy stage and if available, place into a Pressure Pot or warm bath to accelerate the cure. A
Pressure Pot will eliminate porosity, without distorting the denture. Recommended for use with:
Cora-Caine®, Glaze™, Masque™ and Pressure Pot. Standard Kit contains:8 oz. (236g) Powder6 oz.
(177ml) Liquid Application: Used for repairs and orthodontic appliances.Show More Harry J Bosworth
Product Catalogue Original Truliner Sell Sheet Original Truliner Liquid SDS Original Truliner Powder
SDS</p>
</div>
<div class="row">
<h5>Features:</h5>
<div class="col-md-4">
<div class="product-spec">
<p><span>Model Name:</span>{{ product.products_model|raw}}</p>
</div>
<div class="product-Width">
<p><span>Product Width:</span>{{ product.products_width|raw}}</p>
</div>
</div>
<div class="col-md-4">
<div class="product-length">
<p><span>Product Length:</span>{{ product.products_length|raw}}</p>
</div>
<div class="product-height">
<p><span>Product Height:</span>{{ product.products_height|raw}}</p>
</div>
</div>
<div class="col-md-4">
<div class="product-spec">
<p><span>Product Weight:</span>{{ product.products_weight|raw}}</p>
</div>
</div>
</div>
</div>
</div>
</div>
{% endif %}
{% endblock %}