index.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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="http://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="{{ site.github.zip_url }}" class="float">Download ZIP</a>
  28. <a href="{{ site.github.repository_url }}" class="float github">
  29. Github Repo
  30. <i class="icon-star" title="Stars"></i> <span id="starCount"></span>
  31. <i class="icon-forks" title="Forks"></i> <span id="forkCount"></span>
  32. </a>
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. <div class="documentation">
  38. <div class="pagewidth">
  39. {{ content }}
  40. </div>
  41. </div>
  42. {% include footer.html %}
  43. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  44. <script src="//shopify.github.io/javascripts/sub.js"></script>
  45. <script>
  46. jQuery(function($) {
  47. shopifyOpenSource.init({
  48. repo_name: '{{ site.github.repository_nwo }}'
  49. });
  50. });
  51. </script>
  52. </body>
  53. </html>