amberterm/layouts/_default/list.html

29 lines
640 B
HTML
Raw Normal View History

2021-07-21 15:16:12 +00:00
{{ define "main" }}
<main>
2023-04-16 14:40:43 +00:00
<article>
2021-07-21 15:16:12 +00:00
{{ $listtitle := .Title }}
{{ if or .Title .Content }}
<div>
{{ with .Title }}<h1>{{ . }}</h1>{{ end }}
{{ with .Content }}<div>{{ . }}</div>{{ end }}
</div>
{{ end }}
<ul>
{{ range .Paginator.Pages }}
<li>
<div class="post-title">
{{ if eq $listtitle "Posts" }}
{{ .Date.Format "2006-01-02" }} <a href="{{ .RelPermalink }}">{{.Title }}</a>
{{ else }}
<a href="{{ .RelPermalink }}">{{.Title }}</a>
{{ end }}
</div>
</li>
{{ end }}
</ul>
{{ partial "pagination.html" . }}
2023-04-16 14:40:43 +00:00
</article>
2021-07-21 15:16:12 +00:00
</main>
{{ end }}