Skip to content

Instantly share code, notes, and snippets.

@justinallen
Last active January 21, 2016 01:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinallen/4394e0a895f818101ce7 to your computer and use it in GitHub Desktop.
Save justinallen/4394e0a895f818101ce7 to your computer and use it in GitHub Desktop.
simple social buttons for an mvc template
<div class="share-bar">
<h5>Share on:</h5>
<a href="https://twitter.com/intent/tweet?text={{title}}&url={{absoluteUrl}}&via={{twitterUser}}&related={{twitterUser}}" rel="nofollow" target="_blank" title="Share on Twitter">
<img src="/images/social-icons/twitter.png" alt="twitter icon">
</a>
<a href="https://facebook.com/sharer.php?u={{absoluteUrl}}" rel="nofollow" target="_blank" title="Share on Facebook">
<img src="/images/social-icons/facebook.png" alt="facebook icon">
</a>
<a href="https://plus.google.com/share?url={{absoluteUrl}}" rel="nofollow" target="_blank" title="Share on Google+">
<img src="/images/social-icons/googleplus.png" alt="google plus icon">
</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment