I am using the Dimension theme in Hugo.
As it can be seen there are 4 links in the main page:
which are INTRO
, WORK
, ABOUT
and CONTACT
. And there are 4 .md
files with same names in the content
folder: intro.md, work.md, about.md and contact.md.
My question is this:
Can I add more .md
files to content
folder without showing them as links in the main page? For example I want to have data.md
in content
folder without it showing as a link in the main page.
I know that I can change the draft
attribute in a .md
file to true
and it does not show as a link in the main page. But then I want to have a link let’s say in work.md
that when clicked, it opens data.md
and renders it. Is this possible?
Thanks for any help on this.