diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2016-01-27 16:17:46 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2016-01-27 16:17:46 +0200 |
| commit | 14e720b22ac33e87ebb7136299f1e43c8977d076 (patch) | |
| tree | 0c651deb0c2b88603d0501d426d5ad9cbb8f28b5 /templates | |
| parent | f0728f43e3ea644438844ba9ba1294b40f528e43 (diff) | |
Add list pagemaster
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/list.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/templates/list.html b/templates/list.html new file mode 100644 index 0000000..8823203 --- /dev/null +++ b/templates/list.html @@ -0,0 +1,31 @@ +<!doctype HTML> +<html > + <head> + <link href='https://fonts.googleapis.com/css?family=Lato:300italic,700,300' rel='stylesheet' type='text/css'> + <link rel="stylesheet" type="text/css" href="/f/styles/style.css"> + <script src="/f/node_modules/angular/angular.min.js"></script> + <script src="/socket.io/socket.io.js"></script> + <script src="/f/scripts/client.js"></script> + <meta charset="utf8"> + <title>Jonokone</title> + </head> + <body ng-app="ioc" > + <div ng-controller="ioctrl" id="container_main"> + <div id="title">Jonokone</div> + <div id="subtitle">@ jonokone.dy.fi</div> + <br> + + <table id="que" class="centered-table" ng-if="que.length > 0"> + <tr> + <th>Rivi</th> + <th>Nimi</th> + </tr> + <tr ng-repeat="person in que"> + <td >Rivi {{person.row}}</td> + <td >{{person.name}}</td> + </tr> + </table> + + </div> + </body> +</html>
\ No newline at end of file |
