© 2022 Hashnode
#hugo
In this blog post I will go over how I deployed a marketing website built with Hugo, a static site generator written in Go lang. About the website The website is for a new app I'm building called Trac…
I use Hugo for my personal website - https://www.unsungnovelty.org. At present I use Bulma CSS for it. But I am working on a redesign with Tailwind CSS. During my search, I found articles on how to add Tailwind CSS to Hugo confusing. And at…
It's been a while that I was wondering what could be a better way to improve my English communication and writing skills? What about starting a technical blog? I think in this way I could have fun, …
I was building my personal website using a static site generator called Hugo and I faced a hugo-extended version issue while deploying it. I found very less resources while I tried to resolve the issu…
TLDR: This tutorial explains how to add search functionality to your Hugo Website After writing multiple blog posts, I quickly realized that more pages meant more clutter. If someone wants to find a p…
Hugo blog is becoming one of the most popular static site generators. The first time I used it, it blew me away by how easy it was to set up a blog on my local machine. It is also effortless to publis…
In Hugo, content is generally written in markdown and then translated in HTML during the build. Markdown provides a nice and clean syntax with various options, such as adding some HTML classes, but if…
While I did not intend to write any non-CL code in this blog, I thought this one might actually be useful for people like myself. I recently moved my Wordpress blog to a hugo static site. But instead of deploying to netlify or AWS amplify, …
Hugo can add all headers, including security headers, on the local server ( when you type hugo server in the terminal). It's pretty helpful for the debug, as some can break your website. I had a probl…
Hugo is such a great framework with a minimalist approach and powerful features such as the template's lookup. Hugo separates content written in markdown, from layouts, written in HTML and Golang. Mar…