websites_sum7-eu/layouts/_default/list.html

12 lines
231 B
HTML
Raw Normal View History

2018-08-31 01:18:19 +02:00
{{ partial "header.html" . }}
<section class="article-list">
<h1>{{ .Title }}</h1>
{{ range .Data.Pages }}
{{ if eq .Type "post"}}
<hr/>
{{ .Render "li" }}
{{ end }}
{{ end }}
</section>
{{ partial "footer.html" . }}