exclude PMC from Committers list (#83)

diff --git a/content/community/_index.md b/content/community/_index.md
index 1a06129..0b6d68d 100644
--- a/content/community/_index.md
+++ b/content/community/_index.md
@@ -31,7 +31,7 @@
 can be revoked by a unanimous vote of all the active PMC members, except the member in question if they are a PMC
 member.
 
-{{< project-members project="nifi" >}}
+{{< project-members project="nifi" exclude-project="nifi-pmc" >}}
 
 ## Contributors
 
diff --git a/themes/nifi/layouts/shortcodes/project-members.html b/themes/nifi/layouts/shortcodes/project-members.html
index bb5c7cc..33b4ad5 100644
--- a/themes/nifi/layouts/shortcodes/project-members.html
+++ b/themes/nifi/layouts/shortcodes/project-members.html
@@ -6,6 +6,13 @@
   {{- $project = . -}}
 {{- end -}}
 
+{{ $members := index $groups $project }}
+
+{{- with .Get "exclude-project" -}}
+  {{ $excluded := index $groups . }}
+  {{ $members = complement $excluded $members }}
+{{- end -}}
+
 <table>
   <thead>
     <tr>
@@ -14,7 +21,6 @@
     </tr>
   </thead>
   <tbody>
-  {{ $members := index $groups $project }}
   {{- range $username := $members -}}
     {{ $name := index $people $username }}
     <tr>