55 lines
2.2 KiB
HTML
55 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html lang="{{ site.lang | default: "en-US" }}">
|
|
<head>
|
|
{% if site.google_analytics %}
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', '{{ site.google_analytics }}');
|
|
</script>
|
|
{% endif %}
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
{% seo %}
|
|
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
|
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
|
<!--[if lt IE 9]>
|
|
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
<header {% unless site.description or site.github.project_tagline %} class="without-description" {% endunless %}>
|
|
<img src="assets/images/bothan.png" class="bothan" />
|
|
<h1><a href="{{site.url}}">{{ site.title | default: site.github.repository_name }}</a></h1>
|
|
{% if site.description or site.github.project_tagline %}
|
|
<p>{{ site.description | default: site.github.project_tagline }}</p>
|
|
{% endif %}
|
|
<p class="view"><a href="{{ site.github.repository_url }}">View on GitHub <small>{{ github_name }}</small></a></p>
|
|
<ul>
|
|
{% if site.show_downloads %}
|
|
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
|
|
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
|
|
{% endif %}
|
|
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
|
|
</ul>
|
|
</header>
|
|
<section>
|
|
|
|
{{ content }}
|
|
|
|
</section>
|
|
</div>
|
|
<footer>
|
|
<p>© 2019 Tekaoh SWG - https://tekaohswg.github.io - https://github.com/tekaohswg</p>
|
|
</footer>
|
|
|
|
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
|
|
</body>
|
|
</html>
|