Custom list.html for categories page

This is my layout file structure.
21%20PM

The posts in content/angular have category angular

By going to the link localhost:1313/categories, It is able to show the posts with the custom list.html. However, it does not have any of the content inside except the list section.

Below is my list.html:

<section class="container list">
  <h1 class="title">{{ .Title }}</h1>
  <ul>
    {{ range .Paginator.Pages }}
    <li>
      <span></span><a href="{{ .URL }}">{{ .Title }}</a>
    </li>
    {{ end }}
  </ul>
  {{ partial "pagination.html" . }}
</section>

Please share your code so we can build the site and see what is happening. We can’t reproduce your error from code snippets and screenshots. See Requesting Help for sharing code and getting help in the forums. :slight_smile: