Skip to content

Instantly share code, notes, and snippets.

@adesignl
Created July 31, 2013 18:27
Show Gist options
  • Save adesignl/6124728 to your computer and use it in GitHub Desktop.
Save adesignl/6124728 to your computer and use it in GitHub Desktop.
Social Sharing With Jinja Syntax
<div class="social">
<span>Share:</span>
<a href="http://www.facebook.com/share.php?u={{content.absolute_url}}" target="_blank" class="facebook">facebook</a>
<a href="https://twitter.com/share?text={{ content.name|striptags }}&url={{content.absolute_url}}&hashtags=weareawesome&via=bluleadz" target="_blank" class="twitter">twitter</a>
<a href="https://plus.google.com/share?url={{content.absolute_url}}" target="_blank" class="google">google+</a>
<a href="http://www.linkedin.com/shareArticle?mini=true&url={{content.absolute_url}}" target="_blank" class="linkedin">linkedin</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment