summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/latest-release.html
blob: df25e3e5676ebffb28f5d87a99410c837fc4514e (plain)
1
2
3
4
5
6
7
8
9
{{ $caption := .Inner }}
{{ $page := .Page }}
{{ range (where $page.Site.RegularPages.ByDate.Reverse ".Section" $page.Section ).Limit 1 }}
<h2>Latest release (
  <a href="{{ .Permalink }}">
  {{ .PublishDate.Format "2006-01-02" }}
  )</a></h2>
<p> {{ .Content }}</p>
{{ end }}