2023-08-12 10:44:17 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
<section class="content posts h-feed hfeed">
|
|
|
|
{{ range .Paginator.Pages.ByPublishDate.Reverse }}
|
2023-09-12 23:48:39 +00:00
|
|
|
<article class="h-entry">
|
2023-08-12 10:44:17 +00:00
|
|
|
<h2><a class="title u-url p-name" href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
|
|
|
|
<time class="dt-published" datetime="{{ .PublishDate }}">{{ .PublishDate.Format "Mon, Jan 2, 2006" }}</time>
|
|
|
|
{{ partial "tags.html" .}}
|
|
|
|
<p class="summary">
|
|
|
|
{{ .Summary }}
|
|
|
|
</p>
|
|
|
|
{{ if .Truncated }}
|
|
|
|
<div>
|
2023-10-17 22:54:16 +00:00
|
|
|
<a href="{{ .RelPermalink }}">Read More ></a>
|
2023-08-12 10:44:17 +00:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
2023-09-12 23:48:39 +00:00
|
|
|
</article>
|
2023-08-12 10:44:17 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ template "_internal/pagination.html" . }}
|
|
|
|
</section>
|
2023-12-15 03:49:27 +00:00
|
|
|
<div id="right-sidebar">
|
|
|
|
<h3>Archive</h3>
|
|
|
|
<a href="/blog/2023">2023</a>
|
|
|
|
</div>
|
2023-08-12 10:44:17 +00:00
|
|
|
{{ end }}
|