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.

64 lines
2.5KB

  1. <!doctype html>
  2. <html lang="{{ site.lang | default: "en-US" }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="chrome=1">
  6. {% seo %}
  7. <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
  8. <link rel="stylesheet" href="{{site.baseurl}}/assets/css/additional.css">
  9. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  10. <script src="{{ '/assets/js/respond.js' | relative_url }}"></script>
  11. <!--[if lt IE 9]>
  12. <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  13. <![endif]-->
  14. <!--[if lt IE 8]>
  15. <link rel="stylesheet" href="{{ '/assets/css/ie.css' | relative_url }}">
  16. <![endif]-->
  17. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
  18. </head>
  19. <body>
  20. <div id="header">
  21. <nav>
  22. <li class="fork"><a href="{{ site.baseurl }}/">Home</a></li>
  23. <li class="fork"><a href="{{ site.github.repository_url }}">Repository</a></li>
  24. <li class="fork"><a href="{{ site.github.repository_url }}/issues">Issues</a></li>
  25. <li class="fork"><a href="{{ site.github.repository_url }}/labels/future%20module">Road map</a></li>
  26. <li class="fork"><a href="{{ site.baseurl }}/releases">Releases</a></li>
  27. {% if site.show_downloads %}
  28. <li class="downloads"><a href="{{ site.github.zip_url }}">ZIP</a></li>
  29. <li class="downloads"><a href="{{ site.github.tar_url }}">TAR</a></li>
  30. <li class="title">DOWNLOADS</li>
  31. {% endif %}
  32. </nav>
  33. </div><!-- end header -->
  34. <div class="wrapper">
  35. <section>
  36. <div id="title">
  37. <h1>{{ site.title | default: site.github.repository_name }}</h1>
  38. <p>{{ site.description | default: site.github.project_tagline }}</p>
  39. <hr>
  40. </div>
  41. {{ content }}
  42. </section>
  43. </div>
  44. {% if site.google_analytics %}
  45. <script type="text/javascript">
  46. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  47. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  48. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  49. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  50. ga('create', '{{ site.google_analytics }}', 'auto');
  51. ga('send', 'pageview');
  52. </script>
  53. {% endif %}
  54. </body>
  55. </html>