Skip to content

Commit

Permalink
Made the Krist homepage a bit fresher
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemmmy committed Nov 11, 2016
1 parent a7b91cb commit aae5747
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 60 deletions.
85 changes: 85 additions & 0 deletions static/logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
92 changes: 58 additions & 34 deletions static/style.css

Large diffs are not rendered by default.

27 changes: 22 additions & 5 deletions views/index.swig
Expand Up @@ -5,18 +5,35 @@
<ul class="links">
<li><a href="http://www.computercraft.info/forums2/index.php?/topic/22201-krist-minable-currency-that-works-across-servers/page__p__207703#entry207703">Forum Thread</a></li>
<li><a href="/docs">API Documentation</a></li>
<li class="disabled"><span class="coming-soon">Web Wallet</span> (coming soon)</li>
<li><a href="http://kristweb.lemmmy.pw/">Web Wallet</a></li>
</ul>

<br /><br />
<h3>Useful Links</h3>
<h3>Miners</h3>

<ul class="links smaller">
<li><a href="https://github.com/apemanzilla/KWallet">KWallet by apemanzilla</a></li>
<li><a href="https://github.com/apemanzilla/turbokrist">turbokrist by apemanzilla</a></li>
<li><a href="https://github.com/apemanzilla/turbokrist">(<b>GPU</b>) turbokrist by apemanzilla</a></li>
<li><a href="https://github.com/1lann/krist-miner">(<b>CPU</b>) krist-miner by 1lann</a></li>
<li><a href="https://github.com/Yevano/ytci-krist-miner">(<b>CPU</b>) ytci-krist-miner by Yevano</a></li>
</ul>

<br />
<h3>Wallets</h3>

<ul class="links smaller">
<li><a href="http://kristweb.lemmmy.pw/">(<b>Web</b>) KristWeb by Lemmmy</a></li>
<li><a href="https://github.com/apemanzilla/KWallet">(<b>Desktop</b>) KWallet by apemanzilla</a></li>
<li><a href="https://github.com/timia2109/KristWallet">(<b>Android</b>) Android Wallet by timia2109</a></li>
<li><a href="https://pastebin.com/CChWjRx6">(<b>ComputerCraft</b>) kristwallet by 3d6</a></li>
</ul>

<br />
<h3>Games & Tools</h3>

<ul class="links smaller">
<li><a href="http://klottery.sci4me.com/">KLottery by sci4me and Yevano</a></li>
<li><a href="http://kfaucet.lemmmy.pw/">KFaucet by Lignum</a></li>
<li><a href="https://github.com/timia2109/KristWallet">Android Wallet by timia2109</a></li>
<li><a href="http://timia2109.me/kst/">API Tester by timia2109</a></li>
</ul>
</section>

Expand Down
25 changes: 4 additions & 21 deletions views/layout.swig
Expand Up @@ -11,31 +11,14 @@
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/style.css">

{% if protocol === "https" %}
<style>
body {
background-image: -webkit-gradient(
linear,
left top,
right bottom,
color-stop(0, #58aeea),
color-stop(1, #37cc98)
);

background-image: -o-linear-gradient(right bottom, #58aeea 0%, #37cc98 100%);
background-image: -moz-linear-gradient(right bottom, #58aeea 0%, #37cc98 100%);
background-image: -webkit-linear-gradient(right bottom, #58aeea 0%, #37cc98 100%);
background-image: -ms-linear-gradient(right bottom, #58aeea 0%, #37cc98 100%);
background-image: linear-gradient(to right bottom, #58aeea 0%, #37cc98 100%);
}
</style>
{% endif %}

{% block style %}{% endblock %}
</head>
<body>
<header>
<h1>Krist</h1>
<div class="top">
<img src="logo.svg" id="logo" />
<h1>Krist</h1>
</div>
<p>A minable currency that works across servers</p>

<p class="small">Created by <a href="http://www.computercraft.info/forums2/index.php?/user/35172-3d6/">3d6</a> and <a href="http://www.computercraft.info/forums2/index.php?/user/30838-lemmmy/">Lemmmy</a></p>
Expand Down

0 comments on commit aae5747

Please sign in to comment.