hugo-theme-chunky-poster icon indicating copy to clipboard operation
hugo-theme-chunky-poster copied to clipboard

Tags badge in blog post not rendering

Open grandesballo opened this issue 4 years ago • 1 comments

I'm trying to make tags badge appear in blog posts. I se that in single.html the code is present, but tags don't appear.

I tried to add tags in the header copying them from a page of your exampleSite, but the site then doesn't render and gives an error because the heaer is formatted tags = ["value","value2"] but Hugo is expecting tags: ["value","value2"]

is that the cause of the issue?

grandesballo avatar May 15 '20 12:05 grandesballo

Yeah, this would depend on the front-matter you use i.e. using +++ means it's TOML which would be tags = ["value","value2"] whilst --- means it's YAML which would be tags: ["value","value2"].

puresyntax71 avatar May 18 '20 15:05 puresyntax71