<div class="tile-product">
    <h4 class="tile-product__title">
        {{title}}
    </h4>
    <div class="tile-product__img">
        <img src="{{src}}" alt="Wickes">
    </div>
    <div class="tile-product__info">
        {{#if flooring}}
            <p class="tile-product__price-sqm">
                £{{priseSQM}} per m<sup class="tile-product__price-squared">2</sup>
            </p>
        {{else}}
            <p class="tile-product__price">
                <span class="tile-product__price-cost">£{{price}}</span>
                per pack of
                <span class="tile-product__price-quantity">{{quantity}}</span>
            </p>
            <p class="tile-product__price-sqm">
                £{{priseSQM}} per SQM
            </p>
        {{/if}}
    </div>
</div>
