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

<nav class="all-updates">
  <h2>{{ $caption }}</h2>
  <ul>
    {{- range
    (where .Site.RegularPages ".Params.Categories" "intersect" $filter).ByTitle }}
    
    <li><a href="{{ .Permalink }}">{{ .Title }}</a>
      {{- end }}

      
  </ul>
  
</nav>