Hello,
I recently started using Hugo with the Minimal Bootstrap Theme and noticed it’s using the same description for each post.
In the head.html file I found the following regarding the description:
{{ with .Site.Params.description }}
<meta name="description" content="{{ . }}">
{{ end }}
So the theme uses the site configuration for every post.
I tried to edit it so that if a post has a “description” set it should use the posts description and if there is no description set it should use the default one (site params) instead.
Unfortunately I could not get it to work. Is there a way to set it up like this?