2021-04-15 01:37:18 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
|
|
|
|
2023-01-01 01:28:18 -08:00
|
|
|
{{ i18n "recentPosts" }}:
|
2021-04-15 01:37:18 -07:00
|
|
|
<ul class="post-list">
|
|
|
|
{{ range first 10 (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }}
|
2024-06-16 19:35:07 -07:00
|
|
|
{{ partial "post.html" (dict "page" .) }}
|
2021-04-15 01:37:18 -07:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{{ end }}
|