aboutsummaryrefslogtreecommitdiff
path: root/extension/popup/history.html
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-01-06 15:39:22 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-01-06 15:39:22 +0100
commitabf15268acafe588191fffb7ca6ddb963244bb0f (patch)
tree0f582386d09eccd550c414e62337a7f630b2ddb1 /extension/popup/history.html
parent2f8aa00595ab40292019ca739041296c84703899 (diff)
downloadwallet-core-abf15268acafe588191fffb7ca6ddb963244bb0f.tar.xz
Refactor wallet into logic and extension interface.
Diffstat (limited to 'extension/popup/history.html')
-rw-r--r--extension/popup/history.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/extension/popup/history.html b/extension/popup/history.html
new file mode 100644
index 000000000..dccc84605
--- /dev/null
+++ b/extension/popup/history.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+
+<html>
+<head>
+ <meta charset="utf-8">
+ <link rel="stylesheet" href="popup.css" type="text/css">
+ <script src="../lib/util.js" type="text/javascript"></script>
+ <script src="history.js" type="text/javascript"></script>
+
+ <script id="balance-template" type="text/x-handlebars-template">
+ {{#each transactions}}
+ <p>bla</p>
+ {{else}}
+ There's nothing here. Go to
+ our <a href="http://demo.taler.net">demo site</a> to try GNU Taler.
+ {{/each}}
+ </script>
+</head>
+
+<body>
+<div id="header" class="nav">
+ <a href="balance-overview.html">Wallet</a>
+ <a href="history.html" class="active">Transactions</a>
+ <a href="reserves.html">Reserves</a>
+</div>
+
+<div id="content">
+ (Loading...)
+</div>
+
+</body>
+</html>