social_links.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <div class="social-icons">
  2. <div class="social-icons-right">
  3. {% if site.github_username %}
  4. <a class="fa fa-github" href="https://github.com/{{ site.github_username }}"></a>
  5. {% endif %}
  6. {% if site.reddit_username %}
  7. <a class="fa fa-reddit" href="https://reddit.com/user/{{ site.reddit_username }}"></a>
  8. {% endif %}
  9. {% if site.bitbucket_username %}
  10. <a class="fa fa-bitbucket" href="https://bitbucket.org/{{ site.bitbucket_username }}"></a>
  11. {% endif %}
  12. {% if site.stackoverflow_id %}
  13. <a class="fa fa-stack-overflow" href="https://stackoverflow.com/users/{{ site.stackoverflow_id }}"></a>
  14. {% endif %}
  15. <a class="fa fa-rss" href="{{ "/feed.xml" | prepend: site.baseurl }}"></a>
  16. {% if site.twitter_username %}
  17. <a class="fa fa-twitter" href="https://twitter.com/{{ site.twitter_username }}"></a>
  18. {% endif %}
  19. {% if site.skype_username %}
  20. <a class="fa fa-skype" href="skype:{{ site.skype_username }}?userinfo"></a>
  21. {% endif %}
  22. {% if site.steam_nickname %}
  23. <a class="fa fa-steam-square" href="http://steamcommunity.com/id/{{ site.steam_nickname }}"></a>
  24. {% endif %}
  25. {% if site.google_plus_id %}
  26. <a class="fa fa-google-plus" href="https://plus.google.com/{{ site.google_plus_id }}/posts"></a>
  27. {% endif %}
  28. {% if site.email %}
  29. <a class="fa fa-envelope" href="mailto:{{ site.email }}"></a>
  30. {% endif %}
  31. {% if site.linkedin_username %}
  32. <a class="fa fa-linkedin" href="https://www.linkedin.com/in/{{ site.linkedin_username }}"></a>
  33. {% endif %}
  34. {% if site.angellist_username %}
  35. <a class="fa fa-angellist" href="https://angel.co/{{ site.angellist_username }}"></a>
  36. {% endif %}
  37. {% if site.medium_id %}
  38. <a class="fa fa-medium" href="https://medium.com/@{{ site.medium_id }}"></a>
  39. {% endif %}
  40. {% if site.telegram_username %}
  41. <a class="fa fa-telegram" href="https://t.me/{{ site.telegram_username }}"></a>
  42. {% endif %}
  43. {% if site.vk_id %}
  44. <a class="fa fa-vk" href="https://vk.com/{{ site.vk_id }}"></a>
  45. {% endif %}
  46. </div>
  47. <div class="right">
  48. {% if site.bitcoin_url %}
  49. <a class="fa fa-bitcoin" href="{{ site.bitcoin_url }}"></a>
  50. {% endif %}
  51. {% if site.paypal_url %}
  52. <a class="fa fa-paypal" href="{{ site.paypal_url }}"></a>
  53. {% endif %}
  54. {% if site.flattr_button %}
  55. {{ site.flattr_button }}
  56. {% endif %}
  57. </div>
  58. </div>
  59. <div class="clearfix"></div>