Skip to content

Commit

Permalink
lock file and template file
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmeszaros committed Oct 2, 2017
1 parent d5bbf67 commit 072c4db
Show file tree
Hide file tree
Showing 3 changed files with 190 additions and 0 deletions.
14 changes: 14 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "root/bitcore-web",
"description": "Bitcore (BTX) mining pool",
"type": "project",
"authors": [
{
"name": "gregmeszaros",
"email": "[email protected]"
}
],
"require": {
"twig/twig": "~2.0"
}
}
143 changes: 143 additions & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions templates/index.html.twig
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<title>Bitcore (BTX)</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/bitcore_timeline.css" />
<link rel="stylesheet" type="text/css" href="css/timeline.css" />
<link rel="stylesheet" type="text/css" href="css/timeline_light.css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/demo.js"></script>
</head>
<body>
<div id="header">
<a href="index.php">
<img class="logo" src="images/btx.png" alt="BTX" height="40px" />
</a>
<div class="button mobile" data-link="mobile.php"><span><label>Specs</label></span></div>
<div class="button twitter" data-link="twitter.php"><span><label>BTX Explorer</label></span></div>
<div class="button facebook" data-link="facebook.php"><span><label>Contact</label></span></div>
<div class="button download" data-link="#"><span><label>BTX claiming</label></span></div>
</div>

<div id="main">
{% for worker in workers %}
<div>
<span>{{ worker.version }}: </span>
<span>{{ worker.hashrate }}</span>
</div>
{% endfor %}
</div>

</body>
</html>

0 comments on commit 072c4db

Please sign in to comment.