There are no pre-requisites to edit this website. to propose a change you just have to:
- Fork the repository
- Edit the page you want to change (usually in /content)
- Create a Pull Request (you will be able to see your change in the Pull Request checks)
To deploy the site locally (e.g. for debugging), you can :
- In R, install the R package blogdown
install.packages("blogdown")
- start it:
library(blogdown)
- and install hugo using blogdown
install_hugo()
- To use the website, open the R project that you have just cloned from github and start
library(blogdown)
serve_site()
That will display the website via your localhost.