Welcome to the github repo of the website of the Knights of the Kitchen table. If you find any issues on the website, feel free to fix them and send a pull request, or open an issue right here!
The site utilises the GoHugo static site generator to make everything more maintainable. It can be found under the kotkt.nl/
folder.
Note: The site needs hugo-extended to be built.
Documentation: https://gohugo.io/
To run:
- Navigate to the source folder:
cd kotkt.nl
- Run a debug server:
hugo server -D
To build:
hugo
Make sure you are in the kotkt.nl/
folder when attempting to run the hugo
commands.
In Windows, the relevant Execution Policy needs to be set to be able to run Hugo. In Powershell, this can be done using
Set-ExecutionPolicy RemoteSigned -scope Process
. The former Execution Policy is restored once this Powershell instance is closed.