Skip to content

Commit

Permalink
Fix research page
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoares committed Mar 20, 2024
1 parent 6ee84fe commit 908ea0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layouts/research/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h2 class="text-md font-bold">Research Groups</h2>
</div>
<div class="flex flex-col md:flex-row md:flex-wrap md:-mx-8 mb:12">
{{ range where (where .Site.Pages "Type" "groups") ".Kind" "==" "taxonomy"}}
{{ range sort ((where .Pages ".Params.archived" "!=" true)) ".Title" "asc"}}
{{ range sort ((where .Pages ".Params.archived" "!=" false)) ".Title" "asc"}}
{{ partial "research-taxonomy-card-half" .}}
{{ end }}
{{ end }}
Expand All @@ -28,7 +28,7 @@ <h2 class="text-md font-bold">Research Areas</h2>
</div>
<div class="flex flex-col md:flex-row md:flex-wrap md:-mx-8">
{{ range where (where .Site.Pages "Type" "areas") ".Kind" "==" "taxonomy"}}
{{ range sort ((where .Pages ".Params.archived" "!=" true)) ".Title" "asc"}}
{{ range sort ((where .Pages ".Params.archived" "!=" false)) ".Title" "asc"}}
{{ partial "research-taxonomy-card-half" .}}
{{ end }}
{{ end }}
Expand Down

0 comments on commit 908ea0b

Please sign in to comment.