Files

13 lines
260 B
HTML
Raw Permalink Normal View History

{{ define "main" }}
{{ .Content }}
2023-01-01 01:28:18 -08:00
{{ i18n "recentPosts" }}:
{{ $pages := partial "uniquebyseries.html" . }}
<ul class="post-list">
{{ range first 10 $pages }}
{{ partial "post.html" (dict "page" . "linkSeries" true) }}
{{ end }}
</ul>
{{ end }}