blog-static/themes/vanilla/layouts/index.html

12 lines
244 B
HTML
Raw Normal View History

{{ define "main" }}
{{ .Content }}
Recent posts:
2020-05-09 01:41:10 -07:00
<ul class="post-list">
{{ range first 10 (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }}
{{ partial "post.html" . }}
{{ end }}
</ul>
2020-12-27 20:09:05 -08:00
{{ end }}