2019-08-02 18:36:12 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
2019-08-02 21:44:29 -07:00
|
|
|
|
|
|
|
Recent posts:
|
2020-05-04 03:23:55 -07:00
|
|
|
<ul class="page-list">
|
2019-08-02 23:05:50 -07:00
|
|
|
{{ range first 10 (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }}
|
2020-05-04 19:25:03 -07:00
|
|
|
{{ partial "post.html" . }}
|
2019-08-02 21:44:29 -07:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
2019-08-02 18:36:12 -07:00
|
|
|
{{ end }}
|