瀏覽代碼

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 4 年之前
父節點
當前提交
aa4ca206c8
共有 1 個文件被更改,包括 1 次插入1 次删除
  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>