home/layouts/posts/list.html

24 lines
564 B
HTML
Raw Normal View History

2024-11-10 00:33:32 +00:00
{{ define "main" }}
{{ range sort .Paginator.Pages }}
<article class="markdown book-post">
<h2>
2024-11-17 21:26:28 +00:00
<u><a href="{{ .RelPermalink }}">{{ partial "docs/title.html" . }}</a></u>
2024-11-10 00:33:32 +00:00
</h2>
{{ partial "docs/post-meta" . }}
<p>
{{- .Summary -}}
{{ if .Truncated }}
2024-11-17 21:26:28 +00:00
[...]
2024-11-10 00:33:32 +00:00
{{ end }}
2024-11-17 21:26:28 +00:00
<br/>
<a href="{{ .RelPermalink }}" style="color: #AC9C6D">read full post</a>
2024-11-10 00:33:32 +00:00
</p>
</article>
{{ end }}
{{ template "_internal/pagination.html" . }}
{{ end }}
{{ define "toc" }}
{{ partial "docs/taxonomy" . }}
{{ end }}