Untitled


SUBMITTED BY: antoineh1

DATE: May 5, 2016, 12:48 p.m.

FORMAT: Text only

SIZE: 777 Bytes

HITS: 765

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Angular Routing</title>
  5. <!-- include the bootstrap css -->
  6. <link rel="stylesheet" type="text/css" href="css/vendor/bootstrap.min.css">
  7. <!-- include our vendow js -->
  8. <script src="js/vendor/angular.min.js">
  9. </script>
  10. <script src="js/vendor/angular-route.min.js"></script>
  11. <script src="js/vendor/bootstrap.min.js"></script>
  12. </head>
  13. <!-- set our ng-app in the body -->
  14. <body ng-app="routingApp">
  15. <!-- this is where our templates will be injected -->
  16. <div ng-view></div>
  17. </body>
  18. <!-- these are our app specific javascript files -->
  19. <script src="js/app.js"></script>
  20. <script src="js/controller.js"></script>
  21. </html>

comments powered by Disqus