owl-blogs/embed/post-list.html

18 lines
428 B
HTML
Raw Normal View History

<div class="h-feed">
2022-08-18 19:09:02 +00:00
{{range .}}
<div class="h-entry">
<hgroup>
2022-11-19 15:02:41 +00:00
<h3><a class="u-url" href="{{.UrlPath}}">
{{ if .Title }}{{.Title}}{{ else }}Note: {{.Id}}{{ end }}
</a></h3>
<small>
Published:
<time class="dt-published" datetime="{{.Meta.Date}}">
2022-09-11 15:37:18 +00:00
{{.Meta.FormattedDate}}
</time>
</small>
</hgroup>
</div>
2022-08-22 19:22:06 +00:00
<hr>
{{end}}
</div>