Hugo
... How To Keep Your Hugo Site's Content In A Different Repository
I use vim as my primary editor for everything related to code. But when it comes to writing blog posts, I don’t always use vim. In fact I don’t always use my laptop. I resort to a Markdown-Editor that is available on all my devices and has basic git-capability, so I can push it to a remote repository.
But how do I get the files from this repository into my blog?
... How Hugo Server Treats The BaseURL setting
I was just wondering why my RSS URLs don’t work in the deployed version of this site. All Feed Links were pointing to localhost:1313 instead of the baseURL set in my hugo.toml configuration file.
Turns out hugo server ignores the baseURL setting. The reason, I assume, is that hugo server is used as a dev server and you shouldn’t have to point your configuration to localhost while developing and then switching to the live URL when deploying.