This is the theme template repository! Please follow the installation instructions below. If you're looking for the actual theme repository, follow this link.
- Use this template by pressing
Use this template
. Don't fork this repository! - Wait 20s-30s and update the page. The files in your repo are getting populated.
- Add a LICENSE to your repo.
- Clone your version of the template to your local computer:
git clone https://github.com/<username>/<reponame>
- Change the module name to match your github repo in
go.mod
. - Modify
config/_default/hugo.yaml
,config/_default/params.yaml
andconfig/_default/menus.yaml
according to the configuration below. - Add your blog posts to
content/blog/
. See example posts for reference. - Modify
content/about.md
so it matches your preferences. - All images are stored in the
assets/
folder. You can group in subfolders if you like. - Build a local version of your site by executing
hugo server
. You can see the site by navigating tolocalhost:1313
(actual URL will be outputted in the CLI) in a browser. - Add a new
icon.png
file to update the favicon. The png file should be 512px by 512px in size.
- Simple personal blog theme, designed for mobile-first.
- Automatic dark mode (based on system setttings).
- Emoji support for a fun design.
- Healthcheck endpoint (/healthcheck.json).
See the wiki for all info about configuration and how to easily deploy to Github Pages.
The theme version used to build the site is defined in go.mod
file.
The best practice is to update to released and tested versions. To update to a specific version execute the following command in a terminal/commandline (at the root path of your site repo):
hugo mod get github.com/chrede88/[email protected]
Replace X,Y & Z with the corresponding version numbers. You can find the releases here. Please check if any breaking changes are listed under the release you want to update to, before proceeding.