I’ve been building my website with Hugo for a few weeks now and it’s going great. Even though I’m at the very beginning, I love the flexibility, and for the same reason I’m getting a headache - too many options! I’d be really grateful if someone with experience could help me out with the following.
I’m using bearcub as my theme.
My folder structure is
–content.en/
---- blog/
–content.de/
----blog/
I keep normal pages (i.e. “about” or “contact”) in the content.en/content.de folders, and all blog posts in the respective blog/ folders.
Hugo and bearcub shows the date to a visitor, as well as it puts <time datetime='2023-04-16' pubdate>
and <time datetime='2024-09-14T15:11:00.000'>
(last updated) in the HTML source code. Hugo does this on all pages, except the _index.md in my --content.de/ and content.en/ folder where none if it shows up.
What I would like hugo to do:
a) Output <time datetime='2023-04-16' pubdate>
and <time datetime='2024-09-14T15:11:00.000'>
in the HTML source code on all pages, including _index.md, but do not show the date or update date to the visitor outside of the HTML source;
b) output a) plus showing the publish time and updated time only for pages that are in the folder blog/
The theme bearcub uses {{ if not .Params.menu }}
in conjunction with all the date outputs in its single.html, I don’t really understand what .Params.menu does, when I removed it I didn’t see a change.
I’ve come across a possible half-solution, but I don’t like it because it would add yet another parameter to the frontmatter of each page:
{{ if .Params.showthedate }}
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
{{ end }}
…and then setting the parameter in each frontmatter.
Needless to say, this wouldn’t make a difference between having the HTML tags and showing the dates to the actual user, hence “half-solution”.