Commit f1fc4a3bf5017f527f0c6f97c8bf57e76da8bfe0
1 parent
9992f0c88d
Exists in
master
logo kembali ke kiri
Showing 1 changed file with 1 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 | <div class="pull-right"> | 21 | <div class="pull-left"> |
22 | <img src="{logo}"> | 22 | <img src="{logo}"> |
23 | </div> | 23 | </div> |
24 | <h1> | 24 | <h1> |
25 | <br/><br/> | 25 | <br/><br/> |
26 | {title} | 26 | {title} |
27 | </h1> | 27 | </h1> |
28 | 28 | ||
29 | <table class="table table-hover table-striped"> | 29 | <table class="table table-hover table-striped"> |
30 | {for balance in balances} | 30 | {for balance in balances} |
31 | <tr> | 31 | <tr> |
32 | <td>{balance.title}</td> | 32 | <td>{balance.title}</td> |
33 | <td> | 33 | <td> |
34 | <div class="pull-right"> | 34 | <div class="pull-right"> |
35 | {balance.balance} | 35 | {balance.balance} |
36 | </div> | 36 | </div> |
37 | </td> | 37 | </td> |
38 | </tr> | 38 | </tr> |
39 | {/for} | 39 | {/for} |
40 | </table> | 40 | </table> |
41 | 41 | ||
42 | Generated on {timestamp} | 42 | Generated on {timestamp} |
43 | 43 | ||
44 | 44 | ||
45 | <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> | 45 | <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> |
46 | <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> |
47 | <!-- Latest compiled and minified JavaScript --> | 47 | <!-- Latest compiled and minified JavaScript --> |
48 | <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> |
49 | </body> | 49 | </body> |
50 | </html> | 50 | </html> |
51 | 51 |