Files
cocoa-eh-hugo-theme/layouts/index.html

32 lines
1.0 KiB
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>
{{ $nbTotalGroup := len (.Data.Pages.GroupByDate "Jan, 2006" "desc")}}
{{ if gt $nbTotalGroup 5}}
<a href="./blog/" class="see-more">See more ...</a>
{{ end }}
</div>
</div>
</section>
{{ partial "footer.html" . }}