Explorar o código

feat: only show User Group headings in People widget when multiple

Hide User Group headings in People widget if admin chooses to only show one user group.
George Cushen %!s(int64=4) %!d(string=hai) anos
pai
achega
aa4ca206c8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      wowchemy/layouts/partials/widgets/people.html

+ 1 - 1
wowchemy/layouts/partials/widgets/people.html

@@ -25,7 +25,7 @@
   {{ range $page.Params.content.user_groups }}
   {{ $query := where (where site.Pages "Section" "authors") ".Params.user_groups" "intersect" (slice .) }}
 
-  {{if $query}}
+  {{if $query | and (gt (len $page.Params.content.user_groups) 1) }}
   <div class="col-md-12">
     <h2 class="mb-4">{{ . | markdownify }}</h2>
   </div>