summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/recent_blog.html
blob: c1dfed9a417c013af8fb34cc1e0df6133aa8ab0f (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>
    {{ .Summary }}
  </li>
{{ end }}
</ul>