2020-06-19 19:34:34 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ site.lang | default: "en-US" }}">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset='utf-8'>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width,maximum-scale=2">
|
|
|
|
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.mac_download_link {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 45px;
|
|
|
|
height:45px;
|
|
|
|
text-indent: -5000px;
|
|
|
|
overflow: hidden;
|
2020-06-19 19:49:07 +00:00
|
|
|
background: url(assets/images/mac.png) no-repeat bottom left;
|
2020-06-19 19:34:34 +00:00
|
|
|
margin-left: 18px;
|
|
|
|
background-size: contain;
|
|
|
|
}
|
|
|
|
|
|
|
|
.win_download_link {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 45px;
|
|
|
|
height:45px;
|
|
|
|
text-indent: -5000px;
|
|
|
|
overflow: hidden;
|
2020-06-19 19:49:07 +00:00
|
|
|
background: url(assets/images/win.png) no-repeat bottom right;
|
2020-06-19 19:34:34 +00:00
|
|
|
background-size: contain;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mac_download_link:hover {
|
2020-06-19 19:49:07 +00:00
|
|
|
background: url(assets/images/mac.png) no-repeat top left;
|
2020-06-19 19:34:34 +00:00
|
|
|
background-size: contain;
|
|
|
|
filter: brightness(1.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
.win_download_link:hover {
|
2020-06-19 19:49:07 +00:00
|
|
|
background: url(assets/images/win.png) no-repeat top right;
|
2020-06-19 19:34:34 +00:00
|
|
|
background-size: contain;
|
|
|
|
filter: brightness(1.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#downloads_small {
|
|
|
|
height: 45px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
{% seo %}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<!-- HEADER -->
|
|
|
|
<div id="header_wrap" class="outer">
|
|
|
|
<header class="inner">
|
|
|
|
{% if site.github.is_project_page %}
|
|
|
|
<a id="forkme_banner" href="{{ site.github.repository_url }}">View on GitHub</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<h1 id="project_title">{{ site.title | default: site.github.repository_name }}</h1>
|
|
|
|
<h2 id="project_tagline">{{ site.description | default: site.github.project_tagline }}</h2>
|
|
|
|
|
|
|
|
{% if site.show_downloads %}
|
|
|
|
<section id="downloads_small">
|
|
|
|
<a class="win_download_link" href="{{ site.download.win_url }}">Download for Windows</a>
|
|
|
|
<a class="mac_download_link" href="{{ site.download.mac_url }}">Download for MacOS</a>
|
|
|
|
</section>
|
|
|
|
{% endif %}
|
|
|
|
</header>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- MAIN CONTENT -->
|
|
|
|
<div id="main_content_wrap" class="outer">
|
|
|
|
<section id="main_content" class="inner">
|
|
|
|
{{ content }}
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- FOOTER -->
|
|
|
|
<div id="footer_wrap" class="outer">
|
|
|
|
<footer class="inner">
|
|
|
|
<p></p>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% if site.google_analytics %}
|
|
|
|
<script>
|
|
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', '{{ site.google_analytics }}', 'auto');
|
|
|
|
ga('send', 'pageview');
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
|
|
|
</body>
|
|
|
|
</html>
|