mysection
is a folder inside content
. The folder has an _index.md
with following content:
---
title: "My Awesome Section"
---
In the code below
{{ $mysection := where .Pages "Section" "mysection" }}
<h1>My Awesome Section</h1>
{{ range $mysection }}
...
{{ end }}
How do I access the section title ("My Awesome Section"
) from _index.md
to put inside h1
instead of hard-coding it?