87 lines
3.1 KiB
HTML
87 lines
3.1 KiB
HTML
<!doctype html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.3/css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.4.2/pure-min.css">
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/Chart.js/0.2.0/Chart.min.js"></script>
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/zepto/1.1.3/zepto.min.js"></script>
|
|
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
<script src="/static/main.js"></script>
|
|
|
|
|
|
<title>{{=it.portalConfig.website.siteTitle}}</title>
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header class="header">
|
|
<div class="pure-menu pure-menu-open pure-menu-horizontal">
|
|
<ul>
|
|
<li id="home" class="{{? it.selected === '' }}selected{{?}}">
|
|
<a class="hot-swapper" href="/"><i class="fa fa-home"></i>
|
|
Home
|
|
</a>
|
|
</li>
|
|
<li class="{{? it.selected === 'getting_started' }}selected{{?}}">
|
|
<a class="hot-swapper" href="/getting_started">
|
|
<i class="fa fa-rocket"></i>
|
|
Getting Started
|
|
</a>
|
|
</li>
|
|
<li class="{{? it.selected === 'stats' }}selected{{?}}">
|
|
<a class="hot-swapper" href="/stats">
|
|
<i class="fa fa-bar-chart-o"></i>
|
|
Stats
|
|
</a>
|
|
</li>
|
|
<li class="{{? it.selected === 'api' }}selected{{?}}">
|
|
<a class="hot-swapper" href="/api">
|
|
<i class="fa fa-code"></i>
|
|
API
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<div class="stats">
|
|
<div><i class="fa fa-users"></i> <span id="statsMiners">{{=it.stats.global.workers}}</span> Miners</div>
|
|
<div><i class="fa fa-tachometer"></i> <span id="statsHashrate">{{=it.stats.global.hashrate}}</span> KH/s</div>
|
|
</div>
|
|
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<div id="page">
|
|
{{=it.page}}
|
|
</div>
|
|
</main>
|
|
|
|
|
|
<footer>
|
|
|
|
<div>
|
|
This site is powered by the open source <a target="_blank" href="https://github.com/zone117x/node-open-mining-portal/">NOMP</a>
|
|
project created by Matthew Little and licensed under the <a href="http://www.gnu.org/licenses/gpl-2.0.html">GPL</a>
|
|
</div>
|
|
<div>
|
|
<i class="fa fa-heart"></i> Support this project by donating <i class="fa fa-btc"></i> BTC: 1KRotMnQpxu3sePQnsVLRy3EraRFYfJQFR
|
|
</div>
|
|
<div id="communityFooter">
|
|
Community <i class="fa fa-comment"></i> : <a target="_blank" href="https://kiwiirc.com/client/irc.freenode.net/nomp">#nomp IRC</a>
|
|
|
|
|
<a target="_blank" href="http://reddit.com/r/nomp">/r/nomp</a>
|
|
|
|
|
<iframe src="http://ghbtns.com/github-btn.html?user=zone117x&repo=node-open-mining-portal&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="140" height="20"></iframe>
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
|
|
</body>
|
|
</html> |