<div id="btn-cart" class="fr">
<a href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>">
<span>
<?php
echo sprintf(_n('%d item – ', '%d items – ', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);
echo $woocommerce->cart->get_cart_total();
?>
</span>
</a>
</div>