12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html ng-app='MyApp'>
- <head>
- <meta charset="utf-8">
- <title>My To Do Angular</title>
- <link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
- <link rel="stylesheet" type="text/css" href="./css/style.css">
- </head>
- <body>
- <div class="container" ng-controller='Main'>
- <ng-include src='"app/views/header.template.html"'></ng-include>
- <ng-view></ng-view>
- <!-- <ng-include src='"app/views/books-list.teamplate.html"'></ng-include> -->
- <ng-include src='"app/views/footer.teamplate.html"'></ng-include>
- </div>
- <script type="text/javascript" src="./node_modules/angular/angular.js"></script>
- <script type="text/javascript" src="./node_modules/angular-route/angular-route.min.js"></script>
- <script type="text/javascript" src="app/app.module.js"></script>
- <script type="text/javascript" src="app/app.routes.js"></script>
- <script type="text/javascript" src="app/app.config.js"></script>
- <script type="text/javascript" src="app/controllers/books-list.controller.js"></script>
- <script type="text/javascript" src="app/controllers/main.controller.js"></script>
- <script type="text/javascript" src="app/controllers/header.controller.js"></script>
- </body>
- </html>
|