websites_sum7-eu/layouts/_default/list.html

12 lines
235 B
HTML

{{ partial "header.html" . }}
<section id="content" role="main">
<h1>{{ .Title }}</h1>
{{ range .Data.Pages }}
{{ if eq .Type "post"}}
<hr/>
{{ .Render "li" }}
{{ end }}
{{ end }}
</section>
{{ partial "footer.html" . }}