diff options
Diffstat (limited to 'templates/log.html')
| -rw-r--r-- | templates/log.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/log.html b/templates/log.html new file mode 100644 index 0000000..392c5dc --- /dev/null +++ b/templates/log.html @@ -0,0 +1,15 @@ +<!doctype html> +<html> + <head> + <title>Jonokone Log</title> + <meta charset="utf-8"> + <script src="/f/node_modules/angular/angular.min.js"></script> + <script src="/socket.io/socket.io.js"></script> + <script src="/f/scripts/log.js"></script> + </head> + <body ng-app="logapp"> + <div id="container" ng-controller="logctrl"> + <p ng-repeat="msg in logmessages">{{msg}}</p> + </div> + </body> +</html>
\ No newline at end of file |
