summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/recent_blog.html
blob: 8a4ec897ad7b6e7deaa34c85a71985c5d765bc5b (plain)
1
2
3
4
5
6
7
8
9
<ul>
{{ range first 3 (where .Site.RegularPages "Section" "blog") }}
  <li class="post">
    {{.BundleType}}
    <span><a href="{{ .Permalink }}">{{ .Title }}</a></span> - <span>{{ .Date.Format "January 2, 2006" }}</span>
    <p>{{ .Summary }}</p>
  </li>
{{ end }}
</ul>