2017-08-15 00:14:20 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
{% include head.html %}
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
margin-top: 100px;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
font-family: "Source Code Pro"
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#buttons {
|
|
|
|
margin-top: 40px;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
background-color: white;
|
|
|
|
color: #06e8a4;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
background-color: #06e8a4;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<body>
|
|
|
|
<h1>Abacus</h1>
|
|
|
|
<h2>The programmer's calculator</h2>
|
|
|
|
<div id="buttons">
|
2017-08-15 00:31:47 -07:00
|
|
|
<a class="button inverted" href="https://github.com/DanilaFe/abacus/releases">Download</a>
|
|
|
|
<a class="button inverted" href="{{ "/about" | relative_url }}">Learn More</a>
|
|
|
|
<a class="button inverted" href="https://github.com/DanilaFe/abacus">Contribute</a>
|
|
|
|
<a class="button inverted" href="https://github.com/DanilaFe/abacus/wiki">Wiki</a>
|
2017-08-15 00:14:20 -07:00
|
|
|
</div>
|
|
|
|
<img src="http://i.imgur.com/Min70QY.png" title="source: imgur.com" />
|
|
|
|
</body>
|
|
|
|
</html>
|