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

15 lines
422 B
HTML
Raw Normal View History

2024-02-23 04:35:34 +00:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
2024-02-23 04:35:34 +00:00
<section class="content posts h-feed hfeed">
{{ range .Pages }}
<article class="h-entry">
<h2><a class="title u-url p-name" href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{ partial "post-header.html" .}}
2024-02-23 04:35:34 +00:00
<p class="summary">
{{ .Summary }}{{ if .Truncated }}...{{ end }}
2024-02-23 04:35:34 +00:00
</p>
</article>
{{ end }}
</section>
{{ end }}