.Data.Pages is not showing details under a tag

This page What is if __name__ == "__main__" in Python? :: TutsWiki Beta has below tags:

[hugo,content,static site generator]

And tag.html contains below:

{{ partial "header.html" . }}
<body lang="en">

<section id="main">
  <div>
   <h1 id="title">{{ .Title }}</h1>
    {{ range .Data.Pages }}
        {{ .Render "summary"}}
    {{ end }}
  </div>
</section>

<aside id="meta"> </aside>

{{ partial "footer.html" . }}

But when I open https://tutswiki.com/tags/hugo/, I do not see the content list.

Source is here: GitHub - TutsWiki/source: A wiki of tutorials

Oh nevermind, summary.html was missing.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.