Files
val-blog/themes/dreamscape/layouts/_default/list.html
2026-04-23 12:20:19 +08:00

17 lines
476 B
HTML

{{ define "main" }}
<div class="page-header">
<h1>{{ .Title | default .Section | title }}</h1>
{{ if .Content }}<div class="section-desc">{{ .Content }}</div>{{ end }}
</div>
<div class="list">
{{ range .Paginator.Pages }}
<article class="list-item">
<time>{{ .Date.Format "2006-01-02" }}</time>
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<p>{{ .Summary | truncate 100 }}</p>
</article>
{{ end }}
</div>
{{ end }}