An Image Slider

How to Integrate Swiper.js with Hugo Shortcodes

I’d like to add an image carousel / slider to my article. After some research, I found three common approaches: Hardcoding HTML directly into Markdown (tedious and hard to maintain). Using Hugo Modules (powerful but sometimes overkill for a simple slider). Creating a Custom Shortcode (the perfect balance of flexibility and performance). In this post, I’ll show you how I built a robust, reusable Swiper component using the Shortcode approach. This method keeps your Markdown clean while ensuring your site stays fast. ...

January 10, 2026 Â· 3 min Â· 561 words Â· Robin Yang