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