Facebook, Twitter and Google+ share links
<?php
$title = urlencode(html_entity_decode( get_the_title(), ENT_QUOTES, "utf-8" ));
$url = urlencode(get_the_permalink());
?>
<ul class="share">
<li class="twitter">
<a class="share" target="_blank" href="https://twitter.com/intent/tweet?text=<?php echo $title; ?>&url=<?php echo wp_get_shortlink(); ?>&via=thelittleidiot"><i class="icon-twitter"></i> Tweet</a>
</li>
<li class="facebook">
<a target="_blank" href="https://facebook.com/sharer/sharer.php?u=<?php echo $url; ?>"><i class="icon-facebook"></i> Share</a>
</li> <!-- facebook -->
<!-- <li><a target="_blank" href="https://plus.google.com/share?url=<?php echo wp_get_shortlink(); ?>"><i class="icon-gplus"></i> <span>G+</span></a></li> -->
<!-- <li class="email">
<a class="share" href="mailto:?subject=I'd%20like%20to%20share%20this%20with%20you&body=<?php echo $title; ?>%0A%0A<?php echo $url; ?>"><span class="icon-email"></span> Email</a>
</li>
-->
<!-- email -->
<li>
<a href="<?php echo wp_get_shortlink(); ?>">
<i class="icon-link"></i>
<?php echo str_replace('http://','', wp_get_shortlink()); ?>
</a>
</li>
</ul>
<!-- share -->