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

17 lines
478 B
HTML
Raw Normal View History

2017-10-16 13:33:26 +00:00
{{ partial "header.html" . }}
<section class="main">
<div class="container">
<div class="content">
<div class="posts">
<div class="page-heading">Posts about {{ .Title }}</div>
<ul>
2017-10-16 14:40:47 +00:00
{{ range .Data.Pages..Reverse }}
2017-10-16 13:33:26 +00:00
{{ partial "li.html" . }}
{{ end }}
</ul>
</div>
</div>
</div>
</section>
{{ partial "footer.html" . }}