index.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!doctype html>
  2. <!--[if IE 8]><html class="no-js lt-ie9" lang="en"> <![endif]-->
  3. <!--[if IE 9 ]><html class="ie9 no-js"> <![endif]-->
  4. <!--[if (gt IE 9)|!(IE)]><!--> <html class="no-js"> <!--<![endif]-->
  5. <head>
  6. {% include head.html %}
  7. </head>
  8. <body>
  9. <div class="hero">
  10. <div class="hero-lines"></div>
  11. <header class="hero-header">
  12. <div class="pagewidth">
  13. <div class="logo--ie">
  14. <img src="//shopify.github.io/images/shopify-open-source-sub.svg" alt="Shopify Open Source" class="logo">
  15. <span class="breadcrumb"><a href="http://shopify.github.io">Open Source</a> > {{ site.github.project_title }}</span>
  16. </div>
  17. <div class="repo-lang {{ site.github.language | downcase }}">
  18. {{ site.github.language }}
  19. </div>
  20. </div>
  21. </header>
  22. <div class="pagewidth">
  23. <div class="hero-inner">
  24. <h1 class="hero-logo">{{ site.github.project_title }}</h1>
  25. <h2 class="hero-text">{{ site.github.project_tagline }}</h2>
  26. <div class="cta-buttons">
  27. <a href="http://godoc.org/github.com/Shopify/sarama" class="float">Documentation</a>
  28. <a href="{{ site.github.repository_url }}/zipball/master" class="float">Download ZIP</a>
  29. <a href="{{ site.github.repository_url }}" class="float github">
  30. Github Repo
  31. <i class="icon-star" title="Stars"></i> <span id="starCount"></span>
  32. <i class="icon-forks" title="Forks"></i> <span id="forkCount"></span>
  33. </a>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. <div class="documentation">
  39. <div class="pagewidth">
  40. {{ content }}
  41. </div>
  42. </div>
  43. {% include footer.html %}
  44. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  45. <script src="//shopify.github.io/javascripts/sub.js"></script>
  46. <script>
  47. jQuery(function($) {
  48. shopifyOpenSource.init({
  49. repo_name: '{{ site.github.repository_nwo }}'
  50. });
  51. });
  52. </script>
  53. </body>
  54. </html>