Link a new page in theme Resume

Hello
I am using the theme called “resume”.
On the about page I need to make a link to a new page, where the site’s license goes.
I have searched the forum and it is not clear how to do it. I have done several tests without results.

I created a new page:
hugo new licence.md

that is added to \content

In the file content\index.md I have this:


title: “Home”
date: 2018-02-10T18: 56: 13-05: 00
sitemap:
priority: 1.0

outputs:

  • html
  • rss
  • json

bla bla bla

[About the chosen License] (/licence.md) —> NOT WORK
About the chosen License ----> NOT WORK

I get 404 error.

The page should have the same layout as the rest of the site.
I do not understand what I’m missing, I appreciate any suggestion
Thank you

Try:

[About the chosen License]({{< ref "/licence.md" >}}) 

Hi
Not works.
The error is:

[en] REF_NOT_FOUND: Ref "/licence.md": "F:\web\paola\content\_index.md:23:28": page not found
Rebuild failed:

Logged 1 error(s)

I just discovered the error !!!
In the md file was the draft property in true!

I put draft : false
and problem solved!
thank you