Add titles and descriptions to the pages

This commit is contained in:
Joseph Schorr 2015-02-23 14:23:54 -05:00
parent 078f9c206f
commit b66551ec48
15 changed files with 50 additions and 15 deletions

View file

@ -3,7 +3,10 @@
* The site tour page.
*/
angular.module('quayPages').config(['pages', function(pages) {
pages.create('tour', 'tour.html', TourCtrl);
pages.create('tour', 'tour.html', TourCtrl, {
'title': 'Feature Tour',
'description': 'Take a tour of Quay.io\'s features'
});
}]);
function TourCtrl($scope, $location) {