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

17 lines
508 B
HTML
Raw Normal View History

2018-03-19 09:43:38 +00:00
{{ 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" . }}