7 lines
231 B
HTML
7 lines
231 B
HTML
<h2>Recent Posts</h2>
|
|
<ul>
|
|
{{ range first 5 (where site.RegularPages "Section" "blog") }}
|
|
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>{{ if .Date }}<p>{{ .Date.Format "2006-01-02" }}</p>{{ end }}</li>
|
|
{{ end }}
|
|
</ul>
|