2021-04-15 01:37:18 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
<h2>{{ .Title }} </h2>
|
|
|
|
{{ .Content }}
|
|
|
|
|
|
|
|
<ul class="post-list">
|
|
|
|
{{ range (where (where .Site.Pages.ByDate.Reverse "Section" "blog") ".Kind" "!=" "section") }}
|
2024-06-16 19:35:07 -07:00
|
|
|
{{ if .Params.favorite }}{{ partial "post.html" (dict "page" .) }}{{ end }}
|
2021-04-15 01:37:18 -07:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|