Skip to content

Instantly share code, notes, and snippets.

@abdus
Created March 18, 2019 13:07
Show Gist options
  • Save abdus/f4a420726fec977bc643646fbb263b66 to your computer and use it in GitHub Desktop.
Save abdus/f4a420726fec977bc643646fbb263b66 to your computer and use it in GitHub Desktop.
Jekyll Site Social Share Buttons
<div id="share">
<a
href="https://www.facebook.com/sharer/sharer.php?u={{
page.url | absolute_url
}}"
target="_blank"
><i style="color: #44609c" class="fab fa-facebook-f"></i
></a>
<a
href="http://www.reddit.com/submit?url={{
page.url | absolute_url
}}&title={{ page.title }}"
target="_blank"
><i onclick="" style="color: #ff4500" class="fab fa-reddit"></i
></a>
<a
href="https://twitter.com/home?status={{ page.title }}%20{{
page.url
}}%20via%20%40thisisAbdus"
target="_blank"
><i style="color: #1da1f2" class="fab fa-twitter"></i
></a>
<a
href="https://www.linkedin.com/shareArticle?mini=true&url={{
page.url | absolute_url
}}&title={{ page.title }}&summary={{ page.excerpt | strip_html }}&source={{
site.title
}}"
target="_blank"
><i style="color: #0077b5" class="fab fa-linkedin-in"></i
></a>
<a
href="whatsapp://send?text={{ page.url | absolute_url }} {{ page.title }}"
data-action="share/whatsapp/share"
target="_blank"
><i style="color: #01c501" class="fab fa-whatsapp"></i
></a>
<a
href="mailto:?&[email protected]&subject={{ page.title }}&body={{
page.excerpt | strip_html
}}... {{ page.url | absolute_url }}"
target="_blank"
><i style="color: #6506fd" class="fas fa-at"></i
></a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment