2019-08-02 18:36:12 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
2019-08-02 21:44:29 -07:00
|
|
|
|
|
|
|
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 }}
|
2019-08-02 21:44:29 -07:00
|
|
|
</ul>
|
2019-08-02 18:36:12 -07:00
|
|
|
{{ end }}
|