diff --git a/templates/people/list.html b/templates/people/list.html index b5ca0fcd5..290f28ef8 100644 --- a/templates/people/list.html +++ b/templates/people/list.html @@ -19,8 +19,10 @@ {% for person in terms %} {% set page_path = person.path ~ 'index.md' | replace(from='-', to='_') | trim_start_matches(pat="/") %} {% set page = get_page(path=page_path) %} + {% if page.extra.private >= 0 %} {% include "partials/person_card.html" %} - {% endfor %} + {% endif %} + {% endfor %}