yequari.com/layouts/partials/index-latest-blogs.html

10 lines
345 B
HTML
Raw Normal View History

2024-08-03 04:55:34 +00:00
<h3>Latest Blog Posts</h3>
<ul>
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
<li>
2024-11-03 20:45:18 +00:00
<time class="dt-published" datetime="{{ .PublishDate }}">{{ .PublishDate.Format "01/02/06" }}</time>
2024-08-03 04:55:34 +00:00
<a class="title u-url p-name" href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>