sidebar.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <! -- sidebar.html -->
  2. <header class="sidebar-header" role="banner">
  3. <a href="{{ site.BASE_PATH }}/">
  4. <img src="{{ site.BASE_PATH }}/assets/media/phantomjs.png" class="img-circle" />
  5. </a>
  6. <h3 class="title">
  7. <a href="{{ site.BASE_PATH }}/">{{ site.title }}</a>
  8. </h3>
  9. </header>
  10. {% if site.description %}
  11. <div id="bio" class="text-center">
  12. {{ site.description }}
  13. </div>
  14. {% endif %}
  15. <div id="contact-list" class="text-center">
  16. <ul class="list-unstyled list-inline">
  17. {% if site.github.watch %}
  18. <li>
  19. <iframe src="http://ghbtns.com/github-btn.html?user={{ site.github.username }}&repo={{ site.github.repo }}&type=watch&count=true"
  20. allowtransparency="true" frameborder="0" scrolling="0" width="85" height="20"></iframe>
  21. </li>
  22. {% endif %}
  23. {% if site.github.fork %}
  24. <li>
  25. <iframe src="http://ghbtns.com/github-btn.html?user={{ site.github.username }}&repo={{ site.github.repo }}&type=fork&count=true"
  26. allowtransparency="true" frameborder="0" scrolling="0" width="83" height="20"></iframe>
  27. </li>
  28. {% endif %}
  29. </ul>
  30. </div>
  31. <! -- sidebar.html end -->