diff --git a/endpoints/web.py b/endpoints/web.py index 41a669d58..d50f15b2c 100644 --- a/endpoints/web.py +++ b/endpoints/web.py @@ -34,8 +34,9 @@ def load_user(username): return None -@app.route('/', methods=['GET']) -def index(): +@app.route('/', methods=['GET'], defaults={'path': ''}) +@app.route('/') # Catch all +def index(path): return send_file('templates/index.html') diff --git a/static/js/app.js b/static/js/app.js index 0fe4decd1..16710cc3f 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -122,6 +122,8 @@ quayApp = angular.module('quay', ['restangular', 'angularMoment', 'angulartics', $analyticsProvider.virtualPageviews(true); + $locationProvider.html5Mode(true); + $routeProvider. when('/repository/:namespace/:name', {templateUrl: '/static/partials/view-repo.html', controller: RepoCtrl}). when('/repository/:namespace/:name/tag/:tag', {templateUrl: '/static/partials/view-repo.html', controller: RepoCtrl}). diff --git a/static/partials/landing.html b/static/partials/landing.html index 6e1e10029..b7e2d6248 100644 --- a/static/partials/landing.html +++ b/static/partials/landing.html @@ -5,7 +5,7 @@

Secure hosting for private docker repositories

Use the docker images your team needs with the safety of private repositories

- +
@@ -16,7 +16,7 @@

Your Top Repositories

@@ -25,9 +25,9 @@ You don't have any private repositories yet!
- +
or
- +
@@ -157,7 +157,7 @@

Support

diff --git a/static/partials/repo-admin.html b/static/partials/repo-admin.html index 637cb000d..10ebaaee9 100644 --- a/static/partials/repo-admin.html +++ b/static/partials/repo-admin.html @@ -8,7 +8,7 @@
- +

{{repo.namespace}} / {{repo.name}}

diff --git a/static/partials/repo-list.html b/static/partials/repo-list.html index f5343dbf0..7350559c0 100644 --- a/static/partials/repo-list.html +++ b/static/partials/repo-list.html @@ -8,7 +8,7 @@
@@ -16,7 +16,7 @@
@@ -26,7 +26,7 @@

Top Public Repositories

diff --git a/static/partials/view-repo.html b/static/partials/view-repo.html index 6894dbbe6..97faff11e 100644 --- a/static/partials/view-repo.html +++ b/static/partials/view-repo.html @@ -18,7 +18,7 @@ {{repo.namespace}} / {{repo.name}} - + @@ -63,7 +63,7 @@ {{currentTag.name}} diff --git a/templates/index.html b/templates/index.html index d0a7b5348..95986c2b1 100644 --- a/templates/index.html +++ b/templates/index.html @@ -2,9 +2,12 @@ Quay - Private Docker Repository + + + @@ -60,15 +63,15 @@ mixpanel.init(isProd ? "50ff2b2569faa3a51c8f5724922ffb7e" : "38014a0f27e7bdc3ff8 - Quay + Quay