night0721.xyz/layouts/partials/posts.html
2023-11-07 20:55:50 +00:00

12 lines
377 B
HTML

<div class="posts-container">
<div class="posts">
{{- range.Data.Pages -}}
<div class="post">
<h4 class="post-heading">
<a href="{{ .RelPermalink }}" class="post-title">{{ .Title }}</a>
</h4>
<a class="post-time">{{ .Date.Format "January 2, 2006" }}</a>
</div>
{{ end }}
</div>
</div>