Hi,
Welcome to the source code of my personal website ✌️.
You can edit files in repository directly from github and send PRs if you find typos. If you want to go further, you can install hugo, fork this repo and do whatever you want 🎉.
- Create a new page:
hugo new content /path/to/page.md
- Build a site to the
./public/
directory:
hugo
- Build a site including pages that are marked as a "draft":
hugo --buildDrafts
- Build a site to a given directory:
hugo --destination path/to/destination
- Build a site, start up a webserver to serve it, and automatically reload when pages are edited:
hugo server
Found a typo? a broken link? Open an issue or send me a pull-request! 🚀
Huge thanks to GabLeRoux for the help and the discovery of Hugo. 💖
README template from GabLeRoux's website.