Make the landing page show the arrow on smaller resolutions, as well as some basic SEO fixes

This commit is contained in:
Joseph Schorr 2013-10-09 17:57:29 -04:00
parent 986642218b
commit d7ea1944e3
4 changed files with 27 additions and 13 deletions

View file

@ -124,7 +124,7 @@ quayApp = angular.module('quay', ['restangular', 'angularMoment', 'angulartics',
when('/user', {title: 'User Admin', templateUrl: '/static/partials/user-admin.html', controller: UserAdminCtrl}).
when('/guide/', {title: 'Getting Started Guide', templateUrl: '/static/partials/guide.html', controller: GuideCtrl}).
when('/plans/', {title: 'Quay Plans', templateUrl: '/static/partials/plans.html', controller: PlansCtrl}).
when('/', {title: 'Quay', templateUrl: '/static/partials/landing.html', controller: LandingCtrl}).
when('/', {title: 'Quay: Private docker repository hosting', templateUrl: '/static/partials/landing.html', controller: LandingCtrl}).
otherwise({redirectTo: '/'});
}]).
config(function(RestangularProvider) {