This is my layout file structure.
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>