You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
386 B
HTML

{{ define "main" }}
{{ .Content }}
<h2>Latest logs</h2>
<ul>
{{ with .Site.GetPage "/posts" }}
{{ range first 3 (sort .Data.Pages "Date" "desc" (where .Pages ".Params.private" "!=" true))}}
<li>
{{ .PublishDate.Format "2006-01-02" }} &ndash;
<a href="{{ .Permalink }}" >{{ .Title }}</a><br>
</li>
{{ end }}
</ul>
{{ end }}
{{ end }}