I only want to show filenames of “index.json” which live throughout the data tree (i.e. in different directories). My non-working layouts/list.html looks like:
<h1>Show index.json only...</h1>
<ul>
{{ range .Site.Data.index }}
<li>{{ .name }}</li>
{{ end }}
</ul>