mirror of
https://github.com/christian1701/hugo-theme-console.git
synced 2025-11-03 05:59:23 +01:00
home: fix problem with displaying three latest posts
This commit is contained in:
@@ -11,7 +11,7 @@ Console is a minimal, responsive and light theme for Hugo inspired by Linux cons
|
|||||||
|
|
||||||
<div class="posts-list">
|
<div class="posts-list">
|
||||||
{{ with .Site.GetPage "/posts" }}
|
{{ with .Site.GetPage "/posts" }}
|
||||||
{{ range first 3 ((where .Pages ".Params.private" "!=" true) sort .Data.Pages "Date" "desc")}}
|
{{ range first 3 (sort .Data.Pages "Date" "desc" (where .Pages ".Params.private" "!=" true))}}
|
||||||
<div class="post">
|
<div class="post">
|
||||||
<div class="date">{{ .PublishDate.Format "Jan. 2, 2006" }}</div>
|
<div class="date">{{ .PublishDate.Format "Jan. 2, 2006" }}</div>
|
||||||
<h1><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h1>
|
<h1><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h1>
|
||||||
|
|||||||
Reference in New Issue
Block a user