Files
cocoa-eh-hugo-theme/layouts/index.html
2017-01-04 14:09:39 +01:00

27 lines
816 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}}
<li class="groupby">{{ .Key }}</li>
{{ end }}
{{ range where .Pages.ByPublishDate "Section" "blog"}}
{{ partial "li.html" . }}
{{ end }}
{{ end }}
</ul>
</div>
</div>
</section>
{{ partial "footer.html" . }}