Hugo-based static site for Liwords/Woogles.
Clone the repository with submodules:
git clone --recurse-submodules <repo-url>If you already cloned the repo and the themes/dream directory is empty, initialize the submodules:
git submodule update --init --recursiveTo get the latest updates from the theme (or other submodules):
# Update a specific submodule
git submodule update --remote themes/dream
# Or update all submodules
git submodule update --remoteAfter updating, commit the change to track the new submodule version:
git add themes/dream
git commit -m "Update dream theme to latest version"Alternative: You can also navigate into the submodule and pull directly:
cd themes/dream
git pull origin main
cd ../..
git add themes/dream
git commit -m "Update dream theme"Start the Hugo development server:
hugo serverOr with drafts enabled:
hugo server -DThe site will be available at http://localhost:1313
Build the static site:
hugoOutput will be in the public/ directory.