From be758b763e6017aee2e36b3345bbb3c4fe0d6e4c Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Thu, 2 Nov 2023 09:15:21 +0100 Subject: [PATCH] ReadMe --- readme.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..5e0cfe1 --- /dev/null +++ b/readme.md @@ -0,0 +1,38 @@ +# Introduction + +The repository for the new https://fmouhart.epheme.re/ website, not released +yet. + +This is made with [Zola](https://getzola.org) as a static site generator. + +# Building + +## Development + +To modify the website and check the modifications, simply type: + +``` +zola serve +``` + +It will run a local server on `https://localhost:1111`. + +## Publication + +To obtain the website to publish, run: + +``` +zola build +``` + +The content of the website will be in the `public/` folder. + +# Todo + +- [ ] Modify templates/nav.html to take into account the current page +- [ ] Select better colors +- [ ] Multi-language (fr/en) support + - https://www.getzola.org/documentation/content/multilingual/ +- [ ] Find a way to store and present data nicely for the research section + - For instance a json file containing articles and presentations with their + url and a short description.