sandvich.xyz/layouts/partials/post-list.html

13 lines
297 B
HTML
Raw Normal View History

2022-09-12 19:20:07 -07:00
<div class="post-list">
{{ range . }}
<a href="{{ .RelPermalink }}" class="post-item">
<span class="date">
{{ dateFormat "2006-01-02" .Date }}
</span>
<span>
{{ .Title }}
</span>
</a>
{{ end }}
</div>