A static blog built with Hugo and the PaperMod theme, deployed to GitHub Pages.
brew install hugohugo new site cmsheehan.github.io --format yaml
cd cmsheehan.github.iogit init
git remote add origin git@github.com:cmsheehan/cmsheehan.github.io.gitgit submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod
git submodule update --init --recursiveecho 'theme: ["PaperMod"]' >> hugo.yamlSee PaperMod example site for configuration options.
mkdir -p .github/workflows
touch .github/workflows/hugo.yamlAdd the GitHub Actions workflow for automated deployment (see Hugo documentation).
Update submodules after cloning:
git submodule update --init --recursive
git submodule update --remote --merge