frontend: display tags and add new page to filter exercices by tag
This commit is contained in:
parent
9e2c0b2610
commit
ea56219fa1
6 changed files with 48 additions and 0 deletions
|
|
@ -31,4 +31,8 @@ server {
|
|||
location /rank {
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
|
||||
location /tags/ {
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,6 +28,9 @@ server {
|
|||
location /rank {
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
location /tags/ {
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
location /register {
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -68,6 +68,11 @@ server {
|
|||
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
location /tags/ {
|
||||
include fic-auth.conf;
|
||||
|
||||
rewrite ^/.*$ /index.html;
|
||||
}
|
||||
location /register {
|
||||
include fic-auth.conf;
|
||||
|
||||
|
|
|
|||
Reference in a new issue