diff --git a/content/english/sections/call-to-action.md b/content/english/sections/call-to-action.md
index efda148..c4cef16 100644
--- a/content/english/sections/call-to-action.md
+++ b/content/english/sections/call-to-action.md
@@ -9,6 +9,6 @@ button:
link: "https://github.com/zeon-studio/hugoplate"
# don't create a separate page
-_build:
+build:
render: "never"
---
diff --git a/content/english/sections/testimonial.md b/content/english/sections/testimonial.md
index e73716d..3aad279 100644
--- a/content/english/sections/testimonial.md
+++ b/content/english/sections/testimonial.md
@@ -26,6 +26,6 @@ testimonials:
content: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui iusto illo molestias, assumenda expedita commodi inventore non itaque molestiae voluptatum dolore, facilis sapiente, repellat veniam."
# don't create a separate page
-_build:
+build:
render: "never"
---
diff --git a/content/francais/sections/call-to-action.md b/content/francais/sections/call-to-action.md
index efda148..c4cef16 100644
--- a/content/francais/sections/call-to-action.md
+++ b/content/francais/sections/call-to-action.md
@@ -9,6 +9,6 @@ button:
link: "https://github.com/zeon-studio/hugoplate"
# don't create a separate page
-_build:
+build:
render: "never"
---
diff --git a/content/francais/sections/testimonial.md b/content/francais/sections/testimonial.md
index 2d8979f..9ebb79b 100644
--- a/content/francais/sections/testimonial.md
+++ b/content/francais/sections/testimonial.md
@@ -21,6 +21,6 @@ testimonials:
content: "bim mon texte"
# don't create a separate page
-_build:
+build:
render: "never"
---
diff --git a/content/nederlands/sections/call-to-action.md b/content/nederlands/sections/call-to-action.md
index efda148..c4cef16 100644
--- a/content/nederlands/sections/call-to-action.md
+++ b/content/nederlands/sections/call-to-action.md
@@ -9,6 +9,6 @@ button:
link: "https://github.com/zeon-studio/hugoplate"
# don't create a separate page
-_build:
+build:
render: "never"
---
diff --git a/content/nederlands/sections/testimonial.md b/content/nederlands/sections/testimonial.md
index e73716d..3aad279 100644
--- a/content/nederlands/sections/testimonial.md
+++ b/content/nederlands/sections/testimonial.md
@@ -26,6 +26,6 @@ testimonials:
content: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui iusto illo molestias, assumenda expedita commodi inventore non itaque molestiae voluptatum dolore, facilis sapiente, repellat veniam."
# don't create a separate page
-_build:
+build:
render: "never"
---
diff --git a/hugo.toml b/hugo.toml
index 7093e36..cc26ba6 100755
--- a/hugo.toml
+++ b/hugo.toml
@@ -1,159 +1,159 @@
-######################## default configuration ####################
-
-# The base URL of your site (required). This will be prepended to all relative URLs.
-baseURL = "/"
-
-# Title of your website (required).
-title = "CHILL - Logiciel libre d'accompagnement social"
-
-# Your theme name
-theme = "hugoplate"
-
-# Default time zone for time stamps; use any valid tz database name: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
-timeZone = "Europe/Brussels"
-
-[pagination]
-pagerSize = 2 # see https://gohugo.io/extras/pagination/
-
-# post excerpt
-summaryLength = 10 # see https://gohugo.io/content-management/excerpts/
-
-# google analytics
-#googleAnalytics = "G-MEASUREMENT_ID" # see https://gohugo.io/templates/internal/#configure-google-analytics
-
-# disqus short name
-#disqusShortname = "themefisher-template" # we use disqus to show comments in blog posts . To install disqus please follow this tutorial https://portfolio.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/
-
-# disable language
-disableLanguages = []
-hasCJKLanguage = false # If hasCJKLanguage true, auto-detect Chinese/Japanese/Korean Languages in the content. see: https://gohugo.io/getting-started/configuration/#hascjklanguage
-defaultContentLanguage = "fr"
-
-########################## Permalinks ############################
-[permalinks.page]
-"pages" = "/:slugorfilename/"
-
-
-############################# Modules ############################
-[module]
-[[module.mounts]]
-source = "assets"
-target = "assets"
-
-[[module.mounts]]
-source = "hugo_stats.json"
-target = "assets/watching/hugo_stats.json"
-
-############################# Build ##############################
-[build]
-noJSConfigInAssets = false
-useResourceCacheWhen = 'fallback'
-[build.buildStats]
-enable = true
-[[build.cachebusters]]
-source = 'assets/watching/hugo_stats\.json'
-target = 'style\.css'
-[[build.cachebusters]]
-source = '(postcss|tailwind)\.config\.js'
-target = 'css'
-[[build.cachebusters]]
-source = 'assets/.*\.(js|ts|jsx|tsx)'
-target = 'js'
-[[build.cachebusters]]
-source = 'assets/.*\.(css|scss|sass)'
-target = 'css'
-[[build.cachebusters]]
-source = 'data/.*\.(.*)$'
-target = 'css'
-[[build.cachebusters]]
-source = 'assets/.*\.(.*)$'
-target = '$1'
-
-############################# Outputs ############################
-[outputs]
-home = ["HTML", "RSS", "WebAppManifest", "SearchIndex"]
-
-############################# Imaging ############################
-[imaging]
-# See https://github.com/disintegration/imaging
-# Default JPEG or WebP quality setting. Default is 75.
-quality = 90
-resampleFilter = "Lanczos"
-
-############################ Caches ##############################
-[caches]
-[caches.images]
-dir = ":resourceDir/_gen"
-maxAge = "720h"
-
-[caches.assets]
-dir = ":resourceDir/_gen"
-maxAge = "720h"
-
-
-############################ Markup ##############################
-[markup]
-[markup.goldmark.renderer]
-unsafe = true
-
-[markup.highlight]
-style = 'monokai' # see https://xyproto.github.io/splash/docs/all.html
-
-[markup.tableOfContents]
-startLevel = 2
-endLevel = 5
-ordered = true
-
-
-########################### Media types ###########################
-[mediaTypes]
-[mediaTypes."application/manifest+json"]
-suffixes = ["webmanifest"]
-
-
-########################### Output Format ##########################
-[outputFormats]
-[outputFormats.WebAppManifest]
-mediaType = "application/manifest+json"
-rel = "manifest"
-
-[outputFormats.SearchIndex]
-mediaType = "application/json"
-baseName = "searchindex"
-isPlainText = true
-notAlternative = true
-
-
-############################# Plugins ##############################
-
-# CSS Plugins
-[[params.plugins.css]]
-link = "plugins/swiper/swiper-bundle.css"
-[[params.plugins.css]]
-link = "plugins/glightbox/glightbox.css"
-[[params.plugins.css]]
-link = "plugins/font-awesome/v6/brands.css"
-[[params.plugins.css]]
-link = "plugins/font-awesome/v6/solid.css"
-[[params.plugins.css]]
-link = "plugins/font-awesome/v6/icons.css"
-
-# JS Plugins
-[[params.plugins.js]]
-link = "js/search.js"
-[[params.plugins.js]]
-link = "plugins/swiper/swiper-bundle.js"
-[[params.plugins.js]]
-link = "plugins/glightbox/glightbox.js"
-[[params.plugins.js]]
-link = "js/gallery-slider.js"
-[[params.plugins.js]]
-link = "js/accordion.js"
-[[params.plugins.js]]
-link = "js/tab.js"
-[[params.plugins.js]]
-link = "js/modal.js"
-[[params.plugins.js]]
-link = "plugins/cookie.js"
-[[params.plugins.js]]
-link = "plugins/youtube-lite.js"
+######################## default configuration ####################
+
+# The base URL of your site (required). This will be prepended to all relative URLs.
+baseURL = "/"
+
+# Title of your website (required).
+title = "CHILL - Logiciel libre d'accompagnement social"
+
+# Your theme name
+theme = "hugoplate"
+
+# Default time zone for time stamps; use any valid tz database name: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
+timeZone = "Europe/Brussels"
+
+[pagination]
+pagerSize = 2 # see https://gohugo.io/extras/pagination/
+
+# post excerpt
+summaryLength = 10 # see https://gohugo.io/content-management/excerpts/
+
+# google analytics
+#googleAnalytics = "G-MEASUREMENT_ID" # see https://gohugo.io/templates/internal/#configure-google-analytics
+
+# disqus short name
+#disqusShortname = "themefisher-template" # we use disqus to show comments in blog posts . To install disqus please follow this tutorial https://portfolio.peter-baumgartner.net/2017/09/10/how-to-install-disqus-on-hugo/
+
+# disable language
+disableLanguages = []
+hasCJKLanguage = false # If hasCJKLanguage true, auto-detect Chinese/Japanese/Korean Languages in the content. see: https://gohugo.io/getting-started/configuration/#hascjklanguage
+defaultContentLanguage = "fr"
+
+########################## Permalinks ############################
+[permalinks.page]
+"pages" = "/::slugorcontentbasename/"
+
+
+############################# Modules ############################
+[module]
+[[module.mounts]]
+source = "assets"
+target = "assets"
+
+[[module.mounts]]
+source = "hugo_stats.json"
+target = "assets/watching/hugo_stats.json"
+
+############################# Build ##############################
+[build]
+noJSConfigInAssets = false
+useResourceCacheWhen = 'fallback'
+[build.buildStats]
+enable = true
+[[build.cachebusters]]
+source = 'assets/watching/hugo_stats\.json'
+target = 'style\.css'
+[[build.cachebusters]]
+source = '(postcss|tailwind)\.config\.js'
+target = 'css'
+[[build.cachebusters]]
+source = 'assets/.*\.(js|ts|jsx|tsx)'
+target = 'js'
+[[build.cachebusters]]
+source = 'assets/.*\.(css|scss|sass)'
+target = 'css'
+[[build.cachebusters]]
+source = 'data/.*\.(.*)$'
+target = 'css'
+[[build.cachebusters]]
+source = 'assets/.*\.(.*)$'
+target = '$1'
+
+############################# Outputs ############################
+[outputs]
+home = ["HTML", "RSS", "WebAppManifest", "SearchIndex"]
+
+############################# Imaging ############################
+[imaging]
+# See https://github.com/disintegration/imaging
+# Default JPEG or WebP quality setting. Default is 75.
+quality = 90
+resampleFilter = "Lanczos"
+
+############################ Caches ##############################
+[caches]
+[caches.images]
+dir = ":resourceDir/_gen"
+maxAge = "720h"
+
+[caches.assets]
+dir = ":resourceDir/_gen"
+maxAge = "720h"
+
+
+############################ Markup ##############################
+[markup]
+[markup.goldmark.renderer]
+unsafe = true
+
+[markup.highlight]
+style = 'monokai' # see https://xyproto.github.io/splash/docs/all.html
+
+[markup.tableOfContents]
+startLevel = 2
+endLevel = 5
+ordered = true
+
+
+########################### Media types ###########################
+[mediaTypes]
+[mediaTypes."application/manifest+json"]
+suffixes = ["webmanifest"]
+
+
+########################### Output Format ##########################
+[outputFormats]
+[outputFormats.WebAppManifest]
+mediaType = "application/manifest+json"
+rel = "manifest"
+
+[outputFormats.SearchIndex]
+mediaType = "application/json"
+baseName = "searchindex"
+isPlainText = true
+notAlternative = true
+
+
+############################# Plugins ##############################
+
+# CSS Plugins
+[[params.plugins.css]]
+link = "plugins/swiper/swiper-bundle.css"
+[[params.plugins.css]]
+link = "plugins/glightbox/glightbox.css"
+[[params.plugins.css]]
+link = "plugins/font-awesome/v6/brands.css"
+[[params.plugins.css]]
+link = "plugins/font-awesome/v6/solid.css"
+[[params.plugins.css]]
+link = "plugins/font-awesome/v6/icons.css"
+
+# JS Plugins
+[[params.plugins.js]]
+link = "js/search.js"
+[[params.plugins.js]]
+link = "plugins/swiper/swiper-bundle.js"
+[[params.plugins.js]]
+link = "plugins/glightbox/glightbox.js"
+[[params.plugins.js]]
+link = "js/gallery-slider.js"
+[[params.plugins.js]]
+link = "js/accordion.js"
+[[params.plugins.js]]
+link = "js/tab.js"
+[[params.plugins.js]]
+link = "js/modal.js"
+[[params.plugins.js]]
+link = "plugins/cookie.js"
+[[params.plugins.js]]
+link = "plugins/youtube-lite.js"
diff --git a/readme.md b/readme.md
old mode 100755
new mode 100644
index 73752a9..c512fbd
--- a/readme.md
+++ b/readme.md
@@ -1,245 +1,290 @@
-# Specifics for CHILL website
+[bep]: https://github.com/bep
+[bugs]: https://github.com/gohugoio/hugo/issues?q=is%3Aopen+is%3Aissue+label%3ABug
+[contributing]: CONTRIBUTING.md
+[create a proposal]: https://github.com/gohugoio/hugo/issues/new?labels=Proposal%2C+NeedsTriage&template=feature_request.md
+[documentation repository]: https://github.com/gohugoio/hugoDocs
+[documentation]: https://gohugo.io/documentation
+[dragonfly bsd, freebsd, netbsd, and openbsd]: https://gohugo.io/installation/bsd
+[forum]: https://discourse.gohugo.io
+[friends]: https://github.com/gohugoio/hugo/graphs/contributors
+[go]: https://go.dev/
+[hugo modules]: https://gohugo.io/hugo-modules/
+[installation]: https://gohugo.io/installation
+[issue queue]: https://github.com/gohugoio/hugo/issues
+[linux]: https://gohugo.io/installation/linux
+[macos]: https://gohugo.io/installation/macos
+[prebuilt binary]: https://github.com/gohugoio/hugo/releases/latest
+[requesting help]: https://discourse.gohugo.io/t/requesting-help/9132
+[spf13]: https://github.com/spf13
+[static site generator]: https://en.wikipedia.org/wiki/Static_site_generator
+[support]: https://discourse.gohugo.io
+[themes]: https://themes.gohugo.io/
+[twitter]: https://twitter.com/gohugoio
+[website]: https://gohugo.io
+[windows]: https://gohugo.io/installation/windows
-## Using docker
+
-**Note**: it is possible to install using this single command: `docker compose run --rm front npm i`
-
-Since we are using docker to launch the website a few things must be done if you are launching it for the first time.
-Follow these steps:
-
-1. In docker-compose.yaml file replace `npm run dev` with `tail -f /dev/null`
- (This allows the container to keep running while we install all the dependencies in package.json. Without this command the container would exit, because of error)
-2. In another terminal window go into the container `docker-compose exec front sh`
-3. Run `npm i`
-4. Once all dependencies are installed exit the container and stop the container running in the other terminal window
-5. Change the command line `tail -f /dev/null` back to `npm run dev`
-6. In the package.json file change the dev command with `"hugo server --bind 0.0.0.0"`
-7. Launch the container again `docker-compose up --force-recreate`
-
-# Deployment
-
-1. Create a changie to keep track of the changes you made and create a new version.
-2. Launch the CI by tagging your last commits and pushing the tag. The tag should start with `v` and then the version number.
-3. Change the tag in ansible and apply the changes
-
---------------------
-
-
Hugoplate is a free starter template built with Hugo, and TailwindCSS, providing everything you need to jumpstart your Hugo project and save valuable time.
- -Made with β₯ by Zeon Studio
-If you find this project useful, please give it a β to show your support.
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ +## Installation + +Install Hugo from a [prebuilt binary], package manager, or package repository. Please see the installation instructions for your operating system: + +- [macOS] +- [Linux] +- [Windows] +- [DragonFly BSD, FreeBSD, NetBSD, and OpenBSD] + +## Build from source + +Hugo is available in two editions: standard and extended. With the extended edition you can: + +- Encode to the WebP format when processing images. You can decode WebP images with either edition. +- Transpile Sass to CSS using the embedded LibSass transpiler. The extended edition is not required to use the Dart Sass transpiler. + +Prerequisites to build Hugo from source: + +- Standard edition: Go 1.19 or later +- Extended edition: Go 1.19 or later, and GCC + +Build the standard edition: + +```text +go install github.com/gohugoio/hugo@latest ``` -### π Install Dependencies +Build the extended edition: -Install all the dependencies using the following command. - -```bash -npm install +```text +CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest ``` -### π Development Command +## Documentation -Start the development server using the following command. +Hugo's [documentation] includes installation instructions, a quick start guide, conceptual explanations, reference information, and examples. -```bash -npm run dev +Please submit documentation issues and pull requests to the [documentation repository]. + +## Support + +Please **do not use the issue queue** for questions or troubleshooting. Unless you are certain that your issue is a software defect, use the [forum]. + +Hugoβs [forum] is an active community of users and developers who answer questions, share knowledge, and provide examples. A quick search of over 20,000 topics will often answer your question. Please be sure to read about [requesting help] before asking your first question. + +## Contributing + +You can contribute to the Hugo project by: + +- Answering questions on the [forum] +- Improving the [documentation] +- Monitoring the [issue queue] +- Creating or improving [themes] +- Squashing [bugs] + +Please submit documentation issues and pull requests to the [documentation repository]. + +If you have an idea for an enhancement or new feature, create a new topic on the [forum] in the "Feature" category. This will help you to: + +- Determine if the capability already exists +- Measure interest +- Refine the concept + +If there is sufficient interest, [create a proposal]. Do not submit a pull request until the project lead accepts the proposal. + +For a complete guide to contributing to Hugo, see the [Contribution Guide](CONTRIBUTING.md). + +## Dependencies + +Hugo stands on the shoulders of great open source libraries. Run `hugo env --logLevel info` to display a list of dependencies. + +