Add titles and descriptions to the pages
This commit is contained in:
parent
078f9c206f
commit
b66551ec48
15 changed files with 50 additions and 15 deletions
|
@ -3,7 +3,10 @@
|
|||
* Repository listing page. Shows all repositories for all visibile namespaces.
|
||||
*/
|
||||
angular.module('quayPages').config(['pages', function(pages) {
|
||||
pages.create('repo-list', 'repo-list.html', RepoListCtrl);
|
||||
pages.create('repo-list', 'repo-list.html', RepoListCtrl, {
|
||||
'title': 'Repositories',
|
||||
'description': 'View and manage Docker repositories'
|
||||
});
|
||||
}]);
|
||||
|
||||
function RepoListCtrl($scope, $sanitize, Restangular, UserService, ApiService) {
|
||||
|
|
Reference in a new issue