weiro/layouts/simplecss/posts_list.html

5 lines
172 B
HTML
Raw Permalink Normal View History

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-02-18 11:07:18 +00:00
{{ end }}