summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/shows/recent_episodes.html
blob: fc01a57e80a17e41eab6f03453c367e02285fc37 (plain)
1
2
3
4
5
6
<ul>
  {{ range first 5 (where (where .Site.RegularPages "Section" "shows") ".Parent.Title" (.Get 0)) }}
    <li>{{ .Date.Format "2006-01-01" }} - {{ .Title }}. <a href="https://www.youtube.com/watch?v={{ .Params.VideoId }}">Video</a> | <a href="{{ .RelPermalink }}">Post</a></li>
  {{ end }}
</ul>