blob: 0b211d8af99d5d0ee4c1a28dbb7e27584c75a33c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="popup.css" type="text/css">
<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>
|