2020-08-31 15:40:11 +02:00
|
|
|
{{ define "main" }}
|
2026-03-02 19:38:07 -05:00
|
|
|
<content>
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
|
|
|
|
|
<h2>My most recent posts</h2>
|
|
|
|
|
<ul class="blog-posts">
|
|
|
|
|
{{ $max := default 3 .Site.Params.postsToShowOnIndex }}
|
|
|
|
|
{{ $posts := where .Site.RegularPages "Section" "posts" }}
|
|
|
|
|
{{ range first $max $posts.ByDate.Reverse }}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
|
|
|
</li>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<p><a href="/posts/">All posts →</a></p>
|
|
|
|
|
|
|
|
|
|
</content>
|
2020-08-31 15:40:11 +02:00
|
|
|
{{ end }}
|