frontend: display tags and add new page to filter exercices by tag

This commit is contained in:
nemunaire 2018-11-21 03:10:35 +01:00 committed by Pierre-Olivier Mercier
commit ea56219fa1
6 changed files with 48 additions and 0 deletions

View file

@ -31,4 +31,8 @@ server {
location /rank {
rewrite ^/.*$ /index.html;
}
location /tags/ {
rewrite ^/.*$ /index.html;
}
}

View file

@ -28,6 +28,9 @@ server {
location /rank {
rewrite ^/.*$ /index.html;
}
location /tags/ {
rewrite ^/.*$ /index.html;
}
location /register {
rewrite ^/.*$ /index.html;
}

View file

@ -68,6 +68,11 @@ server {
rewrite ^/.*$ /index.html;
}
location /tags/ {
include fic-auth.conf;
rewrite ^/.*$ /index.html;
}
location /register {
include fic-auth.conf;