blob: a214704f54215130cb7399b6e64548327bb47cda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{{ $category := .Get 0 }}
{{ $filter := slice $category }}
{{ $more_link := .Get 1 }}
{{ $caption := .Inner }}
<nav class="recent-updates">
<h2>{{ $caption }}</h2>
<ul>
{{- range
(where .Site.RegularPages ".Params.Categories" "intersect" $filter).ByDate.Reverse.Limit 5 }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a>
(<time>{{ .PublishDate.Format "2006-01-02" }}</time>)
{{- end }}
</ul>
</nav>
|