weiro/layouts/simplecss/posts_single.html

10 lines
295 B
HTML
Raw Normal View History

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 }}
<a href="{{ url_abs .Path }}">{{ format_date .Post.PublishedAt }}</a>
{{ if .Categories }}
<p>
{{ range .Categories }}
<a href="{{ url_abs (printf "/categories/%s" .Slug) }}">{{ .Name }}</a>
{{ end }}
</p>
{{ end }}