Clone
//link to product by converting the title to a slug
.product
  = link_to '/product/' + product.title.parameterize + '/'
    .product-image
      = image_tag product.image
    .product-content
      .title
        h3 = product.title
      .price
        p 
          - currency = data.settings.units.currency || '€' 
          = currency + product.price 
      .weight
        p 
          - weight = data.settings.units.weight || 'kg'
          = product.weight + weight