mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
71 lines
2.4 KiB
HTML
71 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
{% include base.html %}
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
<meta name="description" content="Cyclone : Cyclone Scheme - Cheney on the M.T.A. with native threads.">
|
|
|
|
<link rel="shortcut icon" href="{{ base }}favicon.ico" />
|
|
<link rel="stylesheet" type="text/css" media="screen" href="{{ base }}stylesheets/stylesheet.css">
|
|
|
|
<title>Cyclone Scheme</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- HEADER -->
|
|
<div id="header_menu_wrap" class="outer" style="background: #647BA8">
|
|
<header class="inner-top">
|
|
<p class="banner">
|
|
<a style="margin-right: 3em;" href="{{ base }}"><img src="{{ base }}docs/images/cyclone-logo-header.png" alt="Cyclone"></a>
|
|
<a class="banner" href="https://cyclone-scheme.netlify.app/terminal.html">Try Cyclone</a> -
|
|
<a class="banner"
|
|
href="{{ base }}docs/User-Manual">Manual</a> -
|
|
<a class="banner"
|
|
href="{{ base }}docs/API">Documentation</a> -
|
|
<a class="banner banner-highlight"
|
|
href="{{ base }}news">News</a>
|
|
</p>
|
|
</header>
|
|
</div>
|
|
<div id="header_wrap" class="outer">
|
|
<header class="inner">
|
|
<section id="downloads">
|
|
<a class="banner-forkme" href="https://github.com/justinethier/cyclone">View on GitHub</a>
|
|
</section>
|
|
</header>
|
|
</div>
|
|
|
|
<!-- MAIN CONTENT -->
|
|
<div id="main_content_wrap" class="outer">
|
|
<section id="main_content" class="inner">
|
|
<h1>{{ page.title }}</h1>
|
|
<h2 class="date-labels">
|
|
{% assign d = page.date | date: "%-d" %}
|
|
{{ page.date | date: "%B" }}
|
|
{% case d %}
|
|
{% when '1' or '21' or '31' %}{{ d }}st,
|
|
{% when '2' or '22' %}{{ d }}nd,
|
|
{% when '3' or '23' %}{{ d }}rd,
|
|
{% else %}{{ d }}th,
|
|
{% endcase %}
|
|
{{ page.date | date: "%Y" }}
|
|
</h2>
|
|
{{ content }}
|
|
</section>
|
|
</div>
|
|
|
|
<!-- FOOTER -->
|
|
<div id="footer_wrap" class="outer">
|
|
<footer class="inner">
|
|
<p class="copyright">Cyclone is maintained by <a href="https://github.com/justinethier">justinethier</a></p>
|
|
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
|
|
</footer>
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|