<div class="ultimele_produse_info">
<h3>{{ heading_title }}</h3>
<div class="box-heading"></div>
<div class="row"> {% for product in products %}
  <div class="product-layout col-lg-4 col-md-4 col-sm-6 col-xs-12">
    <div class="latest_products">
      <div class="image"><a title="{{ product.name }}" href="{{ product.href }}"><img src="{{ product.thumb }}" alt="{{ product.name }}" title="{{ product.name }}" class="img-responsive" /></a></div>
      <div class="caption">
        <h4><a title="{{ product.name }}" href="{{ product.href }}">{{ product.name }}</a></h4>

        {% if product.price %}
        <p class="price"> {% if not product.special %}
          {{ product.price }}
          {% else %} <span class="price-new">{{ product.special }}</span> <span class="price-old">{{ product.price }}</span> {% endif %}
          <span id="separator_pret"> / </span> <a id="detalii_pret" title="{{ text_detalii }} - {{ product.name }}" href="{{ product.href }}">{{ text_detalii }}</a></p>
        {% endif %} </div>

    </div>
  </div>
  {% endfor %} </div>
  </div>
