websites_sum7-eu/layouts/_default/list.html

12 lines
235 B
HTML
Raw Normal View History

2018-08-31 01:18:19 +02:00
{{ partial "header.html" . }}
2018-10-09 10:40:10 +02:00
<section id="content" role="main">
2018-08-31 01:18:19 +02:00
<h1>{{ .Title }}</h1>
{{ range .Data.Pages }}
{{ if eq .Type "post"}}
<hr/>
{{ .Render "li" }}
{{ end }}
{{ end }}
</section>
{{ partial "footer.html" . }}