Last active
November 9, 2017 07:14
Revisions
-
adamcbrewer revised this gist
Oct 8, 2017 . 1 changed file with 1 addition and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -46,6 +46,4 @@ <meta property="og:image" content="{image_url}"> <meta property="og:description" content="{description}"> <meta property="og:site_name" content="{site_name}"> ``` -
adamcbrewer revised this gist
Feb 22, 2015 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -46,4 +46,6 @@ <meta property="og:image" content="{image_url}"> <meta property="og:description" content="{description}"> <meta property="og:site_name" content="{site_name}"> ``` [Source](http://guerillalabs.co/blog/social-sharing.html). -
adamcbrewer created this gist
Feb 22, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,49 @@ ## Twitter ```html <a href="http://twitter.com/intent/tweet?url={url_encoded_url}&text={url_encoded_text}&hashtags={url_encoded_hashtags}">Tweet This</a> ``` ## Tumblr ```html <a href="http://www.tumblr.com/share/link?url={url_encoded_url}&name={url_encoded_post_title}&description={url_encoded_post_text}">Share on Tumblr</a> ``` ## Reddit ```html <a href="http://www.reddit.com/submit?url={url_encoded_url}&title={url_encoded_title}">Share on Reddit</a> ``` ## LinkedIn ```html <a href="http://www.linkedin.com/shareArticle?mini=true&url={url_encoded_url}&title={url_encoded_title}">Share on LinkedIn</a> ``` ## Pinterest ```html <a href="http://www.pinterest.com/pin/create/button/?url={url_encoded_url}&media={url_encoded_image_url}&description={url_encoded_description}">Pin It</a> ``` ## Google+ ```html <a href="https://plus.google.com/share?url={url_encoded_url}">Share on Google +</a> <!-- consult OG tags --> ``` ## Facebook ```html <a href="https://www.facebook.com/sharer/sharer.php?u={url_encoded_url}">Share on Facebook</a> <!-- consult OG tags --> ``` ## Open Graph tags ```html <meta property="og:title" content="{title}"> <meta property="og:image" content="{image_url}"> <meta property="og:description" content="{description}"> <meta property="og:site_name" content="{site_name}"> ```