fchat-rising/docs/_layouts/rising.html

219 lines
5.3 KiB
HTML

<!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 }}">
<title>F-Chat Rising | Heavily modded F-Chat 3.0 client</title>
<style>
.download_link {
clear: both;
margin-left: 18px;
}
.download_link a {
color: #da9e0f;
}
.download_link a:hover {
filter: brightness(1.4);
text-decoration: none;
}
.download_link a i {
float: left;
width: 20px;
height: 20px;
padding-right: 5px;
display: inline-block;
}
.download_link.mac a i {
background: url(assets/images/mac.png) no-repeat;
background-size: contain;
margin-top: -1px;
margin-left: -1px;
margin-right: 1px;
}
.download_link.win a i {
background: url(assets/images/win.png) no-repeat;
background-size: contain;
}
.download_link.linux a i {
background: url(assets/images/linux.png) no-repeat;
background-size: contain;
}
.download_link.win,
.download_link.mac,
.download_link.linux {
margin-bottom: 6px;
}
#downloads_small {
}
#downloads_small h3 {
color: #da9e0f;
font-weight: normal;
}
#downloads_small div small {
color: #7d7d7d;
font-size: 80%;
padding-left: 1px;
}
#downloads_small h3 small {
color: #7d7d7d;
font-size: smaller;
}
#downloads_small h3 small a {
color: #c0942c;
}
#downloads_small h3 small a:hover {
filter: brightness(1.4);
text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal !important;
}
#header_wrap {
background-image: url(assets/images/bg.jpg);
}
#main_content h2 + h3 {
margin-top: 35px;
}
#main_content h1,
#main_content h2,
#main_content h3 {
margin-top: 70px;
}
#main_content h2:first-of-type {
margin-top: 0;
}
#main_content h2 {
font-size: 42px;
}
#main_content h3 {
font-size: 32px;
}
#logo {
box-shadow: none;
border: none;
display: block;
margin-top: 1.5rem;
}
#slogan {
box-shadow: none;
border: none;
}
h1.logo-header,
h2.slogan-header {
display: none;
}
blockquote h3 {
margin-top: 0;
}
footer p {
text-align: center;
}
</style>
{% seo %}
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="{{ site.github.repository_url }}">View on GitHub</a>
<h1 class="logo-header" id="project_title">{{ site.title }}</h1>
<img src="assets/images/logo.png" id="logo" />
<h2 id="project_tagline">{{ site.description }}</h2>
{% if site.show_downloads %}
<section id="downloads_small">
<h3>Downloads <small>| v{{site.download.version}} | <a href="{{site.changelog}}">Changelog</a> | <a href="{{site.installurl}}">Installation Help</a></small></h3>
{% for platform in site.download.downloads %}
<div class="download_link {{platform.type}}">
<a href="{{ site.download.url | replace: '%PLATFORM_TAIL%', platform.tail | replace: '%VERSION%', site.download.version }}"><i></i> {{platform.name}}</a>
{% if platform.instructions %}<small>(<a href='{{ platform.instructions }}'>Help with installation</a>)</small>{% endif %}
</div>
{% endfor %}
</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>
By downloading and/or using F-Chat Rising you accept its <a href="https://github.com/hearmeneigh/fchat-rising/blob/master/LICENSE">license</a>.
</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>