2024-02-23 04:35:34 +00:00
|
|
|
{{ define "main" }}
|
2024-04-21 20:11:48 +00:00
|
|
|
<h1>{{ .Title }}</h1>
|
2024-02-23 04:35:34 +00:00
|
|
|
<section class="content posts h-feed hfeed">
|
|
|
|
{{ range .Paginator.Pages.ByPublishDate.Reverse }}
|
|
|
|
<article class="h-entry">
|
2024-03-03 17:00:32 +00:00
|
|
|
{{ partial "post-header.html" .}}
|
2024-04-20 22:44:03 +00:00
|
|
|
<h2><a class="title u-url p-name" href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
|
|
|
|
{{ if .Params.Subtitle }}<p class="subtitle">{{ .Params.Subtitle }}</p>{{ end }}
|
2024-02-23 04:35:34 +00:00
|
|
|
<p class="summary">
|
2024-03-03 17:00:32 +00:00
|
|
|
{{ .Summary }}{{ if .Truncated }}...{{ end }}
|
2024-02-23 04:35:34 +00:00
|
|
|
</p>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
2024-02-29 01:42:02 +00:00
|
|
|
{{ template "_internal/pagination.html" . }}
|
|
|
|
<h3>See Posts From</h3>
|
|
|
|
{{- partial "posts-by-year.html" . -}}
|
2024-02-23 04:35:34 +00:00
|
|
|
{{ end }}
|