2021-04-15 01:37:18 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
|
|
|
|
2023-01-01 01:28:18 -08:00
|
|
|
{{ i18n "recentPosts" }}:
|
2024-11-25 19:15:07 -08:00
|
|
|
{{ partial "uniquebyseries.html" (dict "scratch" .Scratch) }}
|
2021-04-15 01:37:18 -07:00
|
|
|
<ul class="post-list">
|
2024-11-25 19:15:07 -08:00
|
|
|
{{ range first 10 (.Scratch.Get "pages") }}
|
|
|
|
{{ partial "post.html" (dict "page" . "linkSeries" true) }}
|
2021-04-15 01:37:18 -07:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{{ end }}
|