mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00
32 lines
1.0 KiB
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" . }}
|
|
|