yequari.com/themes/dreamcast/layouts/blog/list.html

24 lines
800 B
HTML
Raw Normal View History

2024-02-23 04:35:34 +00:00
{{ define "main" }}
2024-02-29 01:42:02 +00:00
{{ template "_internal/pagination.html" . }}
2024-02-23 04:35:34 +00:00
<section class="content posts h-feed hfeed">
{{ range .Paginator.Pages.ByPublishDate.Reverse }}
<article class="h-entry">
<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>
<a href="{{ .RelPermalink }}">Read More &gt;</a>
</div>
{{ end }}
</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 }}