blog-static/themes/vanilla/layouts/index.html
Danila Fedorin e883e3c60e
Some checks failed
continuous-integration/drone/push Build is failing
Update link lists to visually indicate they're links.
2020-05-04 19:25:03 -07:00

11 lines
231 B
HTML

{{ define "main" }}
{{ .Content }}
Recent posts:
<ul class="page-list">
{{ range first 10 (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }}
{{ partial "post.html" . }}
{{ end }}
</ul>
{{ end }}