vanilla-hugo/layouts/index.html

13 lines
290 B
HTML
Raw Normal View History

{{ define "main" }}
{{ .Content }}
2023-01-01 01:28:18 -08:00
{{ 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 }}