personal-blog/layouts/taxonomy/topic.html

13 lines
257 B
HTML

{{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke">
<h1>{{ .Title }}</h1>
</div>
<div class="content">
{{ range .Data.Pages }}
{{ .Render "summary"}}
{{ end }}
</div>
{{ partial "footer.html" . }}