Setting Up Decap CMS with Hugo and CloudFlare Pages

You have a website built with Hugo hosted on CloudFlare Pages and you want to integrate Decap CMS to it? Here’s how. At the end of this article you’ll be able to add posts to your website and manage existing ones using a Decap admin panel on your website. Prerequisites Your website is built using Hugo Your website is hosted using CloudFlare pages You have a GitHub account (we’ll use it for OAuth authentication) How Creating an OAuth App in GitHub Go to Developer Settings OAuth Apps New OAuth App Fill out application name, Homepage URL and Authorization callback URL as follows ...

September 29, 2025 · Bartosz Kunat

Creating Tag-Specific RSS Feeds in Hugo with PaperMod

This website uses the PaperMod theme for Hugo. The default setup offers a primary RSS feed for all posts at yoursite.com/index.xml. However, I needed more granularity—specifically, RSS feeds for posts tagged with certain keywords. After some exploration and experimentation, I discovered that Hugo automatically generates RSS feeds for each tag. TIL! Here’s how you can access these tag-specific RSS feeds: iOS Tag Feed: https://kunat.dev/tags/ios/index.xml Swift Tag Feed: https://kunat.dev/tags/swift/index.xml Utils Tag Feed: https://kunat.dev/tags/utils/index.xml

January 30, 2024 · Bartosz Kunat