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.

94 lines
3.4 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. <footer>
  2. <div class="container">
  3. <div class="row">
  4. <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
  5. <ul class="list-inline text-center footer-links">
  6. {% if site.author.facebook and site.footer-links-active.facebook %}
  7. <li>
  8. <a href="https://www.facebook.com/{{ site.author.facebook }}" title="Facebook">
  9. <span class="fa-stack fa-lg">
  10. <i class="fa fa-circle fa-stack-2x"></i>
  11. <i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
  12. </span>
  13. </a>
  14. </li>
  15. {% endif %}
  16. {% if site.author.github and site.footer-links-active.github %}
  17. <li>
  18. <a href="https://github.com/{{ site.author.github }}" title="GitHub">
  19. <span class="fa-stack fa-lg">
  20. <i class="fa fa-circle fa-stack-2x"></i>
  21. <i class="fa fa-github fa-stack-1x fa-inverse"></i>
  22. </span>
  23. </a>
  24. </li>
  25. {% endif %}
  26. {% if site.author.twitter and site.footer-links-active.twitter %}
  27. <li>
  28. <a href="https://twitter.com/{{ site.author.twitter }}" title="Twitter">
  29. <span class="fa-stack fa-lg">
  30. <i class="fa fa-circle fa-stack-2x"></i>
  31. <i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
  32. </span>
  33. </a>
  34. </li>
  35. {% endif %}
  36. {% if site.author.email and site.footer-links-active.email %}
  37. <li>
  38. <a href="mailto:{{ site.author.email }}" title="Email me">
  39. <span class="fa-stack fa-lg">
  40. <i class="fa fa-circle fa-stack-2x"></i>
  41. <i class="fa fa-envelope fa-stack-1x fa-inverse"></i>
  42. </span>
  43. </a>
  44. </li>
  45. {% endif %}
  46. {% if site.author.linkedin and site.footer-links-active.linkedin %}
  47. <li>
  48. <a href="https://linkedin.com/{{ site.author.linkedin }}" title="LinkedIn">
  49. <span class="fa-stack fa-lg">
  50. <i class="fa fa-circle fa-stack-2x"></i>
  51. <i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
  52. </span>
  53. </a>
  54. </li>
  55. {% endif %}
  56. {% if site.author.stackoverflow and site.footer-links-active.stackoverflow %}
  57. <li>
  58. <a href="https://stackoverflow.com/{{ site.author.stackoverflow }}" title="StackOverflow">
  59. <span class="fa-stack fa-lg">
  60. <i class="fa fa-circle fa-stack-2x"></i>
  61. <i class="fa fa-stack-overflow fa-stack-1x fa-inverse"></i>
  62. </span>
  63. </a>
  64. </li>
  65. {% endif %}
  66. {% if site.footer-links-active.rss %}
  67. <li>
  68. <a href="{{ '/feed.xml' | prepend: site.baseurl }}" title="RSS">
  69. <span class="fa-stack fa-lg">
  70. <i class="fa fa-circle fa-stack-2x"></i>
  71. <i class="fa fa-rss fa-stack-1x fa-inverse"></i>
  72. </span>
  73. </a>
  74. </li>
  75. {% endif %}
  76. </ul>
  77. <p class="copyright text-muted">
  78. &copy; {{ site.author.name }}
  79. &nbsp;&bull;&nbsp;
  80. {{ site.time | date: '%Y' }}
  81. {% if site.author.email %}
  82. &nbsp;&bull;&nbsp;
  83. <a href="mailto:{{ site.author.email }}">{{ site.author.email }}</a>
  84. {% endif %}
  85. </p>
  86. <p class="theme-by text-muted">
  87. Theme by
  88. <a href="http://deanattali.com/beautiful-jekyll/">beautiful-jekyll</a>
  89. </p>
  90. </div>
  91. </div>
  92. </div>
  93. </footer>