2026-02-18 11:07:18 +00:00
|
|
|
{{ range .Posts }}
|
2026-02-19 11:29:44 +00:00
|
|
|
{{ if .Post.Title }}<h3>{{ .Post.Title }}</h3>{{ end }}
|
2026-02-18 11:07:18 +00:00
|
|
|
{{ .HTML }}
|
2026-02-19 11:29:44 +00:00
|
|
|
<a href="{{ url_abs .Path }}">{{ format_date .Post.PublishedAt }}</a>
|
2026-03-18 10:51:19 +00:00
|
|
|
{{ if .Categories }}
|
|
|
|
|
<p>
|
|
|
|
|
{{ range .Categories }}
|
|
|
|
|
<a href="{{ url_abs (printf "/categories/%s" .Slug) }}">{{ .Name }}</a>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</p>
|
|
|
|
|
{{ end }}
|
2026-02-18 11:07:18 +00:00
|
|
|
{{ end }}
|