summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/recent-updates.html
blob: 959ebf5185cbcdc44279bc58da8653e5a1fbc0e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ $category := .Get 0 }}
{{ $filter := slice $category }}
{{ $more_link := .Get 1 }}
{{ $caption := .Inner }}

<nav>
  {{- range
  (where .Site.RegularPages ".Params.category" "intersect" $filter).ByDate.Reverse }}
    {{ partial "partials/article_list_item.html" . }}
  {{- end }}
  
  {{- range
  (where .Site.RegularPages ".Params.Categories" "intersect" $filter).ByDate.Reverse }}
    {{ partial "partials/article_list_item.html" . }}
  {{- end }}
</nav>