Files
cocoa-eh-hugo-theme/layouts/index.html
2017-01-04 13:48:52 +01:00

25 lines
753 B
HTML

{{ partial "header.html" . }}
<section class="main">
<div class="container">
<div class="content">
{{ range where .Data.Pages "Title" "Home"}}
<div class="markdown">
{{ .Content }}
</div>
{{ end }}
<ul>
{{ range first 5 (.Data.Pages.GroupByDate "Jan, 2006" "desc")}}
{{ $nbPages := len (where .Pages "Section" "blog")}}
{{ if ne $nbPages 0}}{{ .Key }}{{ end }}
{{ range where .Pages.ByPublishDate "Section" "blog"}}
{{ partial "li.html" . }}
{{ end }}
{{ end }}
</ul>
</div>
</div>
</section>
{{ partial "footer.html" . }}