Static landing page made with Hugo using GitHub Pages.
This project's static Pages are built & deployed by GitHub CI (Actions), following the steps defined in hugo.yml.
It can also be built using GitLab CI, following the steps
defined in .gitlab-ci.yml.
Deployment always happen on the latest commit on the master branch.
To work locally with this project, you'll have to follow the steps below:
- Install Hugo (see below)
- Fork, clone or download this project
- Go to the root folder, and run
hugo server - Preview the website under
localhost:1313/ - Add content, modify the files. The local preview is rebuilt and refreshed in your browser.
- commit and push your changes, submit a PR etc :D
- (optional) To generate the final static website, simply run
hugo(seehugo.ymlfor deployment optimisations)
Read more at Hugo's documentation.
Install the extended edition of Hugo (you don't need the extended/deploy edition)
To confirm that it's correctly installed, type hugo version (only the +extended matters).
hugo v0.136.5+extended linux/amd64 BuildDate=unknown VendorInfo=nixpkgs
Go to the root folder of the project, run hugo server,
and access the website under localhost:1313/, or wherever tells you it is.