weiro/layouts/simplecss/templates/_post_meta.html

10 lines
296 B
HTML
Raw Permalink Normal View History

2026-03-21 23:28:33 +00:00
<div class="post-meta">
<a href="{{ url_abs .Path }}">{{ format_date .Post.PublishedAt }}</a>
{{ if .Categories }}
<div class="post-categories">
{{ range .Categories }}
<a href="{{ url_abs (printf "/categories/%s" .Slug) }}">{{ .Name }}</a>
{{ end }}
</div>
{{ end }}
</div>