|
| 1 | +<!doctype html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="chrome=1"> |
| 6 | + <title>{{ site.title | default: site.github.repository_name }} by {{ site.github.owner_name }}</title> |
| 7 | + <link href='https://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'> |
| 8 | + <link rel="stylesheet" href="{{ '/assets/css/styles.css' | relative_url }}"> |
| 9 | + <script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script> |
| 10 | + <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> |
| 11 | + <!--[if lt IE 9]> |
| 12 | + <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> |
| 13 | + <![endif]--> |
| 14 | + </head> |
| 15 | + <body> |
| 16 | + <div class="wrapper"> |
| 17 | + <header> |
| 18 | + <h1 class="header">{{ site.title | default: site.github.repository_name }}</h1> |
| 19 | + <p class="header">{{ site.description | default: site.github.project_tagline }}</p> |
| 20 | + |
| 21 | + <ul> |
| 22 | + {% if site.show_downloads %} |
| 23 | + <li class="download"><a class="buttons" href="{{ site.github.zip_url }}">Download ZIP</a></li> |
| 24 | + <li class="download"><a class="buttons" href="{{ site.github.tar_url }}">Download TAR</a></li> |
| 25 | + {% endif %} |
| 26 | + <li><a class="buttons github" href="{{ site.github.repository_url }}">View On GitHub</a></li> |
| 27 | + </ul> |
| 28 | + |
| 29 | + {% if site.github.is_project_page %} |
| 30 | + <p class="header">This project is maintained by <a class="header name" href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p> |
| 31 | + {% endif %} |
| 32 | + |
| 33 | + {% if site.github.is_user_page %} |
| 34 | + <ul> |
| 35 | + <li><a class="buttons github" href="{{ site.github.repository_url }}">GitHub Profile</a></li> |
| 36 | + </ul> |
| 37 | + {% endif %} |
| 38 | + </header> |
| 39 | + |
| 40 | + <section> |
| 41 | + {{ content }} |
| 42 | + </section> |
| 43 | + |
| 44 | + <footer> |
| 45 | + <p><small>Hosted on <a href="https://pages.github.com">GitHub Pages</a> using the Dinky theme</small></p> |
| 46 | + </footer> |
| 47 | + </div> |
| 48 | + <!--[if !IE]><script>fixScale(document);</script><![endif]--> |
| 49 | + {% if site.google_analytics %} |
| 50 | + <script type="text/javascript"> |
| 51 | + var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); |
| 52 | + document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); |
| 53 | + </script> |
| 54 | + <script type="text/javascript"> |
| 55 | + try { |
| 56 | + var pageTracker = _gat._getTracker("{{ site.google_analytics }}"); |
| 57 | + pageTracker._trackPageview(); |
| 58 | + } catch(err) {} |
| 59 | + </script> |
| 60 | + {% endif %} |
| 61 | + </body> |
| 62 | +</html> |
0 commit comments