13 lines
290 B
HTML
13 lines
290 B
HTML
{{ define "main" }}
|
|
{{ .Content }}
|
|
|
|
{{ i18n "recentPosts" }}:
|
|
{{ partial "uniquebyseries.html" (dict "scratch" .Scratch) }}
|
|
<ul class="post-list">
|
|
{{ range first 10 (.Scratch.Get "pages") }}
|
|
{{ partial "post.html" (dict "page" . "linkSeries" true) }}
|
|
{{ end }}
|
|
</ul>
|
|
|
|
{{ end }}
|