|
| 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="IE=edge"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | + <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}"> |
| 8 | + {{ site.header_extra }} |
| 9 | + |
| 10 | +{% seo %} |
| 11 | + </head> |
| 12 | + |
| 13 | + <body> |
| 14 | + |
| 15 | + <header> |
| 16 | + <div class="container"> |
| 17 | + <a id="a-title" href="{{ '/' | relative_url }}"> |
| 18 | + <h1>{{ site.title | default: site.github.repository_name }}</h1> |
| 19 | + </a> |
| 20 | + <h2>{{ site.description | default: site.github.project_tagline }}</h2> |
| 21 | + |
| 22 | + <section id="downloads"> |
| 23 | + {% if site.show_downloads %} |
| 24 | + <a href="{{ site.github.zip_url }}" class="btn">Download as .zip</a> |
| 25 | + <a href="{{ site.github.tar_url }}" class="btn">Download as .tar.gz</a> |
| 26 | + {% endif %} |
| 27 | + <a href="{{ site.github.repository_url }}" class="btn btn-github"><span class="icon"></span>View on GitHub</a> |
| 28 | + </section> |
| 29 | + </div> |
| 30 | + </header> |
| 31 | + |
| 32 | + <div class="container"> |
| 33 | + <section id="main_content"> |
| 34 | + {{ content }} |
| 35 | + </section> |
| 36 | + </div> |
| 37 | + |
| 38 | + {% if site.google_analytics %} |
| 39 | + <script> |
| 40 | + (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ |
| 41 | + (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), |
| 42 | + m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) |
| 43 | + })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); |
| 44 | + ga('create', '{{ site.google_analytics }}', 'auto'); |
| 45 | + ga('send', 'pageview'); |
| 46 | + </script> |
| 47 | + {% endif %} |
| 48 | + </body> |
| 49 | +</html> |
0 commit comments