style nav

This commit is contained in:
Clément
2018-09-09 13:51:56 +02:00
parent 5a80bb7722
commit 6996faa2e1
41 changed files with 2245 additions and 239 deletions

8
.htaccess Normal file
View File

@ -0,0 +1,8 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>