yequari.com/themes/saturn/layouts/_default/list.html

21 lines
639 B
HTML
Raw Permalink Normal View History

2023-08-12 10:44:17 +00:00
{{ define "main" }}
2023-09-12 23:48:39 +00:00
<section class="content posts h-feed hfeed">
2023-08-12 10:44:17 +00:00
<h1>{{ .Title }}</h1>
{{ range .Pages }}
2023-09-12 23:48:39 +00:00
<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...</a>
</div>
{{ end }}
</article>
2023-08-12 10:44:17 +00:00
{{ end }}
2023-09-12 23:48:39 +00:00
</section>
2023-08-12 10:44:17 +00:00
{{ end }}