My new blogs. Let me show you them.
This is my personal website built with Hugo and ox-hugo.
Install Hugo
brew install hugoIn Emacs, install ox-hugo and configure in your init.el config by following the ox-hugo instructions below:
The hugo-coder theme is installed as a Hugo module. To check if a newer version is available:
go list -m -u allIf an update is available, it will appear in brackets after the current version, e.g. [v0.0.0-20260115...]. No brackets means you’re on the latest.
To update all modules:
hugo mod get -uTo update a specific module, specify its path (e.g. the theme):
hugo mod get -u github.com/luizdepra/hugo-coderSince this is a Hugo site, you can run this locally with this command:
hugo server -DAfter making some changes to content-org/content.org, you can export all valid Hugo subtrees with:
C-c C-e H A
You can deploy the latest changes by simply pushing to master:
git push origin master