aboutsummaryrefslogtreecommitdiff
path: root/layouts/shortcodes/projects.html
blob: b9cf8b562ef21ae57d2cd9158122bdfaec00f41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ $projects := where .Site.RegularPages "Params.categories" "intersect" (slice "projects") }}

<ul>
{{ range $projects }}
  <li>
    <a href="{{ .Permalink }}">{{ .Title }}</a>
    {{ with .Description }}
      &mdash; {{ . }}
    {{ end }}
  </li>
{{ end }}
</ul>