<!doctype html>
<html>
<head>
<title>Angular Routing</title>
<!-- include the bootstrap css -->
<link rel="stylesheet" type="text/css" href="css/vendor/bootstrap.min.css">
<!-- include our vendow js -->
<script src="js/vendor/angular.min.js">
</script>
<script src="js/vendor/angular-route.min.js"></script>
<script src="js/vendor/bootstrap.min.js"></script>
</head>
<!-- set our ng-app in the body -->
<body ng-app="routingApp">
<!-- this is where our templates will be injected -->
<div ng-view></div>
</body>
<!-- these are our app specific javascript files -->
<script src="js/app.js"></script>
<script src="js/controller.js"></script>
</html>