| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html lang="en" ng-app="rbtApp"> | |
| 3 | |
| 4 <head> | |
| 5 <meta name="viewport" content="width=device-width"> | |
| 6 <meta charset="utf-8"> | |
| 7 <title>Rebaseline Tool</title> | |
| 8 <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min
.css"> | |
| 9 <link rel="stylesheet" href="css/app.css"> | |
| 10 </head> | |
| 11 <body> | |
| 12 | |
| 13 | |
| 14 <div class="container-fluid"> | |
| 15 <div class="pull-right"> | |
| 16 Instructions, roadmap, etc. are at <a href="http://goo.gl/CqeVHq" target
="_blank">http://goo.gl/CqeVHq</a> | |
| 17 </div> | |
| 18 </div> | |
| 19 | |
| 20 <!-- Include the different views here. | |
| 21 Make everything fluid to scale to the maximum size of any screen. --> | |
| 22 <div class="container-fluid"> | |
| 23 <div ng-view></div> | |
| 24 </div> | |
| 25 | |
| 26 <!-- do everything local right now: Move to CDN fix when it's a performance is
sue --> | |
| 27 <script src="bower_components/angular/angular.js"></script> | |
| 28 <script src="bower_components/angular-route/angular-route.js"></script> | |
| 29 | |
| 30 <!-- Local includes external libs --> | |
| 31 <script src="bower_components/angular-bootstrap/ui-bootstrap.js"></script> | |
| 32 <script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script
> | |
| 33 | |
| 34 <!-- Local JS --> | |
| 35 <script src="js/app.js"></script> | |
| 36 </body> | |
| 37 </html> | |
| OLD | NEW |