A simple Hugo theme for your digital garden, inspired by Maggie Appleton website
This theme includes:
- a digital garden / blog
- a projects portfolio
- library notes
-
Install hugo and create a new website: https://gohugo.io/getting-started/quick-start/
-
Add the theme to your website
You can either use git submodule or clone the repo in your theme foldergit submodule add https://github.com/paulmartins/hugo-digital-garden-theme.git themes/digital-garden
cd themes git clone https://github.com/paulmartins/hugo-digital-garden-theme.git
-
Customize your site in your
config.toml
. An example is given in the theme folder:themes/digital-garden/exampleSite/config.toml
-
Run the server and check your localhost:1313
hugo server
If you used git submodule to add the theme (see Getting started) do
git submodule update --remote --rebase
If you clone the theme, just go in the theme folder and pull
cd themes/digital-garden
git pull