Files used to build the website https://baratin-tools.github.io/ with Hugo and the blogdown R package.
The served static files are in folder /docs/
To rebuild the site from scratch (removing pages not present anymore), remove docs folder
rm -r docs
Then in R, rebuild the site using rmarkdown (alternatively Build Website in the build tab of Rstudio can be used):
rmarkdown::render_site(encoding = 'UTF-8')
To serve the site and check the pages locally do (prior to commit):
blogdown::serve_site()