Build a beautiful and simple website in literally minutes. Demo at http://deanattali.com/beautiful-jekyll
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.6 KiB

  1. {% if site.share-links-active.twitter == false and site.share-links-active.facebook == false and site.share-links-active.google == false and site.share-links-active.linkedin == false %}
  2. {% else %}
  3. <section id = "social-share-section">
  4. <!--- Share on Twitter -->
  5. {% unless site.share-links-active.twitter == false %}
  6. <a href="https://twitter.com/intent/tweet?text={{ page.title | url_encode }}+{{ site.url }}{{ page.url }}"
  7. class="btn btn-social-icon btn-twitter" title="Share on Twitter">
  8. <span class="fa fa-fw fa-twitter" aria-hidden="true"></span>
  9. </a>
  10. {% endunless %}
  11. <!--- Share on Facebook -->
  12. {% unless site.share-links-active.facebook == false %}
  13. <a href="https://www.facebook.com/sharer/sharer.php?u={{ site.url }}{{ page.url }}"
  14. class="btn btn-social-icon btn-facebook" title="Share on Facebook">
  15. <span class="fa fa-fw fa-facebook" aria-hidden="true"></span>
  16. </a>
  17. {% endunless %}
  18. <!--- Share on Google Plus -->
  19. {% unless site.share-links-active.google == false %}
  20. <a href="https://plus.google.com/share?url={{ site.url }}{{ page.url }}"
  21. class="btn btn-social-icon btn-google" title="Share on Google+">
  22. <span class="fa fa-fw fa-google-plus" aria-hidden="true"></span>
  23. </a>
  24. {% endunless %}
  25. <!--- Share on LinkedIn -->
  26. {% unless site.share-links-active.linkedin == false %}
  27. <a href="https://www.linkedin.com/shareArticle?mini=true&url={{ site.url }}{{ page.url }}"
  28. class="btn btn-social-icon btn-linkedin" title="Share on LinkedIn">
  29. <span class="fa fa-fw fa-linkedin" aria-hidden="true"></span>
  30. </a>
  31. {% endunless %}
  32. </section>
  33. {% endif %}