.
└── content
├── _index.md
└── pages
├── _index.md
└── about.md
Having list.html
as
{{define "main"}}
<ul>
{{range .Pages}}
<li>{{.Date.Format "2006-01-02"}} | <a href="{{.RelPermalink}}">{{.Title}}</a></li>
{{end}}
</ul>
{{end}}
For some reason, main homepage is rendering Pages section. But accessing Pages, shows:
* 0001-01-01 |
* 0001-01-01 | About
Why is there empty title here?
Edit: I suppose it’s caused by _index.md
not having a title
tag. I tried headless: true
but that doesn’t solve it.