10 lines
343 B
HTML
10 lines
343 B
HTML
|
<h3>Latest Blog Posts</h3>
|
||
|
<ul>
|
||
|
{{ range first 3 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
|
||
|
<li>
|
||
|
<time class="dt-published" datetime="{{ .PublishDate }}">{{ .PublishDate.Format "1/2/06" }}</time>
|
||
|
<a class="title u-url p-name" href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||
|
</li>
|
||
|
{{ end }}
|
||
|
</ul>
|