index.html 1.2 KB

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html ng-app='MyApp'>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>My To Do Angular</title>
  6. <link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
  7. <link rel="stylesheet" type="text/css" href="./css/style.css">
  8. </head>
  9. <body>
  10. <div class="container" ng-controller='Main'>
  11. <ng-include src='"app/views/header.template.html"'></ng-include>
  12. <ng-view></ng-view>
  13. <!-- <ng-include src='"app/views/books-list.teamplate.html"'></ng-include> -->
  14. <ng-include src='"app/views/footer.teamplate.html"'></ng-include>
  15. </div>
  16. <script type="text/javascript" src="./node_modules/angular/angular.js"></script>
  17. <script type="text/javascript" src="./node_modules/angular-route/angular-route.min.js"></script>
  18. <script type="text/javascript" src="app/app.module.js"></script>
  19. <script type="text/javascript" src="app/app.routes.js"></script>
  20. <script type="text/javascript" src="app/app.config.js"></script>
  21. <script type="text/javascript" src="app/controllers/books-list.controller.js"></script>
  22. <script type="text/javascript" src="app/controllers/main.controller.js"></script>
  23. <script type="text/javascript" src="app/controllers/header.controller.js"></script>
  24. </body>
  25. </html>