Ref/relref to page section in template

I am attempting to use the ref or relref syntax to create a common ‘jump to’ section on my pages without having to add it to each page’s content. When I add the relref in the single.html template as below:

<a href='{{ .RelRef "#Get-Started" }}'>Get Started</a>

the generated link comes out as http://localhost:1313/page/#ZgotmplZ

Is there a syntax that would enable putting the ref/relref to a #section in the templage page?

Try:

{{ .RelRef "#Get-Started" | safeURL }}

Perfect! Thanks.