devroom.io/themes/cocoa-eh/layouts/_default/list.html

17 lines
508 B
HTML

{{ partial "header.html" . }}
<section class="main">
<div class="container">
<div class="content">
<div class="posts">
<div class="page-heading">Showing you all the {{ .Title }}</div>
<ul id="taxonomy-items">
{{ range .Data.Pages }}
{{ partial "taxonomy-node.html" . }}
{{ end }}
</ul>
</div>
</div>
</div>
</section>
{{ partial "footer.html" . }}