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