Commit 9992f0c88d56951aa1954188aa51b36c41ec50e2

Authored by Adhidarma Hadiwinoto
1 parent f55010072f
Exists in master

logo di kanan atas

Showing 1 changed file with 3 additions and 1 deletions Inline Diff

views/basic_template.html
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html lang="en"> 2 <html lang="en">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 <meta name="viewport" content="width=device-width, initial-scale=1">
7 <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> 7 <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
8 <title>{title}</title> 8 <title>{title}</title>
9 9
10 <!-- Latest compiled and minified CSS --> 10 <!-- Latest compiled and minified CSS -->
11 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> 11 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
12 12
13 <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> 13 <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
14 <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> 14 <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
15 <!--[if lt IE 9]> 15 <!--[if lt IE 9]>
16 <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> 16 <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
17 <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> 17 <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
18 <![endif]--> 18 <![endif]-->
19 </head> 19 </head>
20 <body> 20 <body>
21 <h1> 21 <div class="pull-right">
22 <img src="{logo}"> 22 <img src="{logo}">
23 </div>
24 <h1>
23 <br/><br/> 25 <br/><br/>
24 {title} 26 {title}
25 </h1> 27 </h1>
26 28
27 <table class="table table-hover table-striped"> 29 <table class="table table-hover table-striped">
28 {for balance in balances} 30 {for balance in balances}
29 <tr> 31 <tr>
30 <td>{balance.title}</td> 32 <td>{balance.title}</td>
31 <td> 33 <td>
32 <div class="pull-right"> 34 <div class="pull-right">
33 {balance.balance} 35 {balance.balance}
34 </div> 36 </div>
35 </td> 37 </td>
36 </tr> 38 </tr>
37 {/for} 39 {/for}
38 </table> 40 </table>
39 41
40 Generated on {timestamp} 42 Generated on {timestamp}
41 43
42 44
43 <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> 45 <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
44 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> 46 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
45 <!-- Latest compiled and minified JavaScript --> 47 <!-- Latest compiled and minified JavaScript -->
46 <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> 48 <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
47 </body> 49 </body>
48 </html> 50 </html>
49 51