Initial commit

The website is done in English.
There are some placeholder things for nl and fr as well, but the language header on the en page is commented out
There are no links in the README.md to the actual repo, only mentions to it

I wanted everything set up and done before changing those things
This commit is contained in:
ilja
2020-02-28 08:15:58 +01:00
commit d4e96a4c0b
12 changed files with 514 additions and 0 deletions

19
conf/nginx.conf Normal file
View File

@@ -0,0 +1,19 @@
location PATHTOCHANGE {
return 302 PATHTOCHANGE/en;
}
location PATHTOCHANGE/en {
alias ALIASTOCHANGE;
index index_en.html;
}
location PATHTOCHANGE/nl {
alias ALIASTOCHANGE;
index index_nl.html;
}
location PATHTOCHANGE/fr {
alias ALIASTOCHANGE;
index index_fr.html;
}