summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/posts/recent.html
blob: f4b28ca1e0d0b4d890a242d4580cdbb7d8f1e5d6 (plain)
1
2
3
4
5
6
<ul>
  {{ range first 5 (where .Site.RegularPages "Section" "posts") }}
    <li>{{ .Date.Format "2006-01-02" }} - <a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
  {{ end }}
</ul>