Clone
product.html.slim
.product-detail
  .image style=background_image(image_path(product.image))
  .content
    .meta
      h1 = product.title

      .weight
        - weight = data.settings.units.weight || 'kg'
        span = product.weight + weight

      .price
        - currency = data.settings.units.currency || '€' 
        span = currency + product.price 

    .body
      = markdown product.body