diff --git a/Gruntfile.js b/Gruntfile.js index 0e6b317..f01cabc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -10,6 +10,10 @@ module.exports = function(grunt) { 'src': 'bower_components/angular/angular.min.js', 'dest': 'assets/scripts/angular.min.js' }, + { + 'src': 'bower_components/angular-route/angular-route.min.js', + 'dest': 'assets/scripts/angular-route.min.js' + } ] } }, diff --git a/assets/styles/.empty b/assets/styles/.empty new file mode 100644 index 0000000..e69de29 diff --git a/bower.json b/bower.json index 6f609f9..336232a 100644 --- a/bower.json +++ b/bower.json @@ -15,6 +15,7 @@ "tests" ], "dependencies": { - "angular": "^1.5.5" + "angular": "^1.5.5", + "angular-route": "^1.5.5" } } diff --git a/views/index.pug b/views/index.pug index d387314..888f622 100644 --- a/views/index.pug +++ b/views/index.pug @@ -5,4 +5,6 @@ html meta(http-equiv='content-type', content='text/html; charset=utf-8') title= title script(src='assets/scripts/angular.min.js') + script(src='assets/scripts/angular-route.min.js') body(ng-app='interfug') + div(ng-view)