diff --git a/app.js b/app.js
index d2f86c3..c9cae7f 100644
--- a/app.js
+++ b/app.js
@@ -7,6 +7,7 @@ angular.module('myApp', [
'myApp.authors',
'myApp.site',
'myApp.build',
+ 'myApp.configure',
'myApp.create',
'myApp.version',
'myApp.services'
diff --git a/index.html b/index.html
index 2c8c535..464743f 100644
--- a/index.html
+++ b/index.html
@@ -109,6 +109,7 @@
+
diff --git a/views/configure/configure.html b/views/configure/configure.html
new file mode 100644
index 0000000..b950a9a
--- /dev/null
+++ b/views/configure/configure.html
@@ -0,0 +1,72 @@
+
diff --git a/views/configure/configure.js b/views/configure/configure.js
new file mode 100644
index 0000000..d931c92
--- /dev/null
+++ b/views/configure/configure.js
@@ -0,0 +1,13 @@
+'use strict';
+
+angular.module('myApp.configure', ['ngRoute'])
+
+.config(['$routeProvider', function($routeProvider) {
+ $routeProvider.when('/configure', {
+ templateUrl: 'views/configure/configure.html',
+ controller: 'ConfigureCtrl as Configure'
+ });
+}])
+
+.controller('ConfigureCtrl', [function() {
+}]);
diff --git a/views/site/site.html b/views/site/site.html
index 3590ba0..3de34f7 100644
--- a/views/site/site.html
+++ b/views/site/site.html
@@ -1,12 +1,13 @@