@(title: String)(content: Html)(implicit cart: Cart) @title
@cart.productCount match { case 0 => { Your shopping cart is empty. } case n => { You have @n items in your shopping cart. } }
@content